-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "sqlite-migrator",
"version": "0.5.5",
"description": "A tiny tool to migrate sqlite3 database safely",
"main": "index.js",
"scripts": {
"dev": "vite",
"changeset": "changeset",
"changeset:version": "changeset version",
"build": "tsc && vite build && npm run test --run && npm run build:types",
"build:types": "dts-bundle-generator --config ./dts-bundle-generator.config.ts && npm run copy:types",
"copy:types": "cp dist/index.d.ts ./",
"prepublishOnly": "npm run build",
"release": "npm publish",
"test": "vitest --run",
"test:watch": "vitest"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src",
"index.d.ts"
],
"author": "Muhammad Azamuddin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/azamuddin/sqlite-migrator"
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"@xstate/immer": "^0.3.3",
"better-sqlite3": "^8.4.0",
"kysely": "^0.26.0",
"xstate": "^4.38.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.4",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@xstate/inspect": "^0.8.0",
"@xstate/test": "^1.0.0-alpha.1",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.44.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"node-color-log": "^10.0.2",
"prettier": "3.0.0",
"typescript": "^5.1.6",
"vite": "^4.4.2",
"vitest": "^0.33.0"
}
}