-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"name": "setlist",
"private": true,
"version": "0.6.1-beta.18",
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"packages/core",
"packages/mcp",
"packages/cli",
"packages/app"
],
"scripts": {
"build": "npm run build -w packages/core && npm run build -w packages/cli && npm run build -w packages/mcp",
"build:core": "npm run build -w packages/core",
"build:mcp": "npm run build -w packages/mcp",
"build:cli": "npm run build -w packages/cli",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "npm run build -w packages/core && npm run build -w packages/cli && tsc --noEmit -p packages/mcp/tsconfig.json",
"sqlite:node": "npm run sqlite:node -w packages/app",
"repair:mcp-abi": "npm run sqlite:node -w packages/app && npm run verify:mcp-abi",
"verify:mcp-abi": "bash scripts/verify-mcp-abi.sh"
},
"engines": {
"node": ">=24"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^24.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"volta": {
"node": "24.15.0"
}
}