-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.69 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "agent-html",
"private": true,
"version": "0.1.0-alpha.2",
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run canvas:dev",
"canvas:dev": "node packages/cli/bin/agent-html.mjs dev",
"canvas:dev:example": "node packages/cli/bin/agent-html.mjs dev --pipeline example",
"canvas:build:example": "node packages/cli/bin/agent-html.mjs demo-build --out-dir dist-agent-html",
"canvas:build:site": "npm run canvas:build:example && npm --workspace @agent-html/docs run build && node tools/build-agent-html-site.mjs",
"canvas:preview:example": "npx vite --host 127.0.0.1 dist-agent-html",
"canvas:deps": "depcruise --config .dependency-cruiser.mjs --output-type err agent-html",
"canvas:guard": "node packages/cli/bin/agent-html.mjs guard",
"canvas:index": "node tools/generate-react-canvas-index.mjs",
"canvas:index:check": "node tools/generate-react-canvas-index.mjs --check",
"canvas:typecheck": "tsc --noEmit -p config/tsconfig/tsconfig.react-canvas.json",
"dev:docs": "npm --workspace @agent-html/docs run dev",
"build": "npm run canvas:typecheck && npm run build:docs",
"build:docs": "npm --workspace @agent-html/docs run build",
"bridge:agent": "node tools/agent-html-bridge.mjs",
"bridge:claude-channel": "node tools/agent-html-claude-channel-bridge.mjs",
"lint": "eslint . --config config/eslint.config.js",
"knip": "knip",
"knip:agent-html": "knip --no-exit-code --reporter compact --include files,exports",
"knip:report": "knip --no-exit-code --reporter compact",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"test": "vitest run --config config/vitest.config.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@number-flow/react": "^0.6.0",
"@react-spring/web": "^10.1.1",
"@visx/axis": "^4.0.1-alpha.0",
"@visx/clip-path": "^4.0.1-alpha.0",
"@visx/curve": "^4.0.1-alpha.0",
"@visx/event": "^4.0.1-alpha.0",
"@visx/glyph": "^4.0.1-alpha.0",
"@visx/gradient": "^4.0.1-alpha.0",
"@visx/grid": "^4.0.1-alpha.0",
"@visx/group": "^4.0.1-alpha.0",
"@visx/heatmap": "^4.0.1-alpha.0",
"@visx/network": "^4.0.1-alpha.0",
"@visx/pattern": "^4.0.1-alpha.0",
"@visx/responsive": "^4.0.1-alpha.0",
"@visx/sankey": "^4.0.1-alpha.0",
"@visx/scale": "^4.0.1-alpha.0",
"@visx/shape": "^4.0.1-alpha.0",
"@visx/tooltip": "^4.0.1-alpha.0",
"@visx/xychart": "^4.0.1-alpha.0",
"clsx": "^2.1.1",
"d3-array": "^3.2.4",
"d3-hierarchy": "^1.1.9",
"d3-sankey": "^0.12.3",
"motion": "^12.40.0",
"roughjs": "^4.6.6",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"dependency-cruiser": "^17.4.3",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^16.5.0",
"knip": "^6.14.2",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"shadcn": "^4.10.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^7.3.1",
"vitest": "^4.1.7",
"wrangler": "^4.94.0"
},
"description": "[English](./README.md)",
"main": "index.js",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sayhi-bzb/Agent-HTML.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/Sayhi-bzb/Agent-HTML/issues"
},
"homepage": "https://github.com/Sayhi-bzb/Agent-HTML#readme"
}