-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 944 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 944 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
38
{
"name": "agent-canvas",
"version": "0.1.22",
"description": "Interactive visual canvas for Claude Code — rich annotatable documents in the browser",
"bin": {
"agent-canvas": "bin/agent-canvas.js"
},
"scripts": {
"build": "bun daemon/build.ts",
"typecheck": "tsc --noEmit && tsc --noEmit -p daemon/tsconfig.json",
"prepublishOnly": "bun daemon/build.ts"
},
"dependencies": {
"marked": "^17.0.4",
"mermaid": "11.4.1",
"preact": "^10.25.0",
"preact-render-to-string": "^6.6.6"
},
"devDependencies": {
"@tailwindcss/cli": "4",
"@types/bun": "^1.3.10",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"tailwindcss": "4",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/contember/agent-canvas"
},
"license": "MIT",
"keywords": [
"claude-code",
"canvas",
"interactive",
"annotations"
]
}