-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 845 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 845 Bytes
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
{
"name": "atscript-db",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"ready": "vp fmt && vp lint && vp run --filter './packages/*' test && vp run --filter './packages/*' build",
"build": "vp run --filter './packages/*' build",
"test": "vp run --filter './packages/*' test",
"release": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major",
"prepare": "vp config"
},
"devDependencies": {
"@types/node": "catalog:",
"typescript": "catalog:",
"vite-plus": "catalog:"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
],
"overrides": {
"@atscript/db": "workspace:*"
}
}
}