-
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) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 930 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
33
34
35
36
37
{
"name": "sii-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Monorepo: a shared TypeScript SII core consumed by a CLI and an MCP server (Claude Code + Claude Desktop).",
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"typecheck": "tsc -b",
"test": "vitest run",
"test:watch": "vitest",
"metrics": "node scripts/metrics.mjs",
"lint": "eslint packages tools",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@types/node": "^20.16.0",
"eslint": "^9.14.0",
"prettier": "^3.3.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.0"
},
"pnpm": {
"overrides": {
"fast-uri": ">=3.1.5",
"ip-address": ">=10.3.1",
"hono": ">=4.12.34"
}
}
}