-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.35 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "claude-gate",
"version": "0.16.1",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc && vite build dashboard",
"build:server": "tsc",
"dev": "tsx src/kernel/server.ts",
"dev:dashboard": "vite dashboard",
"serve": "node dist/kernel/server.js",
"test": "vitest run",
"typecheck": "tsc --noEmit && tsc -p dashboard --noEmit"
},
"dependencies": {
"@heroui/react": "^3.2.2",
"@heroui/styles": "^3.2.2",
"@modelcontextprotocol/sdk": "^1.12.0",
"@xyflow/react": "^12.11.2",
"elkjs": "^0.12.0",
"express": "^4.19.2",
"yaml": "^2.9.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@types/express": "^4.17.21",
"@types/node": "^22.5.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.3.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwindcss": "^4.3.3",
"tsx": "^4.16.2",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vitest": "^2.0.5"
},
"bin": {
"claude-gate": "./dist/cli.js"
},
"files": [
"dist",
"dashboard/dist",
"README.md"
],
"description": "Evidence-checked quality gate for AI-driven iOS development. Local MCP daemon that verifies build identity before accepting evidence."
}