-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.15 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "cin-interface",
"version": "0.1.0",
"description": "3D visualization interface for Claude Code and CIN-API (forked from Vibecraft)",
"author": "jason",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sploithunter/CIN-Interface"
},
"keywords": [
"claude",
"claude-code",
"cin-api",
"visualization",
"3d",
"ai",
"developer-tools"
],
"type": "module",
"bin": {
"cin-interface": "./bin/cli.js"
},
"files": [
"bin/",
"dist/",
"!dist/**/*.map",
"data/.gitkeep"
],
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "vite",
"dev:server": "tsx watch src/server/index.ts",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build",
"build:server": "tsc",
"preview": "vite preview",
"start": "node dist/server/index.js",
"server": "tsx src/server/index.ts",
"setup": "node bin/cli.js setup",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:backend": "vitest run tests/backend",
"test:unit": "vitest run tests/unit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"agent:issues": "tsx src/agent/issue-creator.ts",
"agent:poller": "tsx src/agent/issue-poller.ts",
"agent:webhook": "tsx src/agent/issue-worker.ts",
"agents:start": "./scripts/start-agents.sh",
"agents:stop": "./scripts/start-agents.sh --stop"
},
"dependencies": {
"@deepgram/sdk": "^4.11.3",
"coding-agent-bridge": "file:../coding-agent-bridge",
"html2canvas": "^1.4.1",
"three": "^0.170.0",
"tone": "^15.1.22"
},
"devDependencies": {
"@playwright/test": "^1.58.0",
"@types/node": "^22.0.0",
"@types/three": "^0.170.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^2.1.9",
"concurrently": "^9.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vitest": "^2.1.9",
"ws": "^8.19.0"
}
}