-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 KB
/
package.json
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
61
62
63
64
65
66
{
"name": "kysely-sqlite-tools",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "",
"author": {
"name": "subframe7536",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "pnpm -r -F \"./packages/dialect*\" dev",
"build": "pnpm -r -F \"./packages/dialect*\" build",
"release": "pnpm i && bumpp package.json packages/dialect*/package.json",
"serve": "cd playground && pnpm run dev",
"publish": "pnpm -r -F \"./packages/dialect*\" publish --no-git-checks",
"test": "pnpm run build && vitest run --root ./test --passWithNoTests && pnpm run test:bun",
"test:bun": "bun test ./packages/dialect-bun-worker/test/index.test.ts",
"typecheck": "tsc --noEmit",
"format": "eslint . --fix",
"lint": "eslint .",
"prepare": "husky",
"commit": "czg"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@sqlite.org/sqlite-wasm": "^3.48.0-build3",
"@subframe7536/eslint-config": "^1.1.8",
"@subframe7536/type-utils": "^0.1.6",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^20.17.16",
"@types/sql.js": "^1.4.9",
"@vlcn.io/crsqlite-wasm": "^0.16.0",
"better-sqlite3": "^11.8.1",
"bumpp": "^10.0.1",
"bun-types": "^1.2.1",
"cz-git": "^1.11.0",
"czg": "^1.11.0",
"eslint": "^9.19.0",
"eslint-plugin-vue": "^9.32.0",
"eslint-processor-vue-blocks": "^1.0.0",
"husky": "^9.1.7",
"kysely": "catalog:",
"lint-staged": "^15.4.3",
"node-sqlite3-wasm": "^0.8.32",
"sql.js": "^1.12.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vitest": "^3.0.4"
},
"lint-staged": {
"*": [
"eslint . --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}