-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.29 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.29 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
{
"name": "signature-decoder-v2",
"version": "2.0.0",
"private": true,
"description": "Monorepo for Signature Decoder v2 (single TypeScript core)",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run -w @sd/core-schema build && npm run -w @sd/core-knowledge build && npm run -w @sd/core-llm build && npm run -w @sd/core-engine build && npm run -w @sd/core-renderers build && npm run -w @sd/test-fixtures build && npm run -w @sd/test-harness build && npm run -w @sd/test-api build && npm run -w @sd/test-web build && npm run -w @sd/snap build",
"test": "npm run -w @sd/test-harness test && npm run -w @sd/snap test",
"clean": "npm run --workspaces --if-present clean",
"dev:test-api": "npm run -w @sd/test-api dev",
"dev:test-web": "npm run -w @sd/test-web dev",
"dev:snap": "npm run -w @sd/snap start",
"dev:site": "npm run -w @sd/site dev",
"dev": "run-p dev:test-api dev:snap dev:site",
"test:harness": "npm run -w @sd/test-harness test"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"npm-run-all2": "^8.0.4",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.11.0"
}
}