This repository was archived by the owner on Dec 12, 2025. It is now read-only.
forked from wbopan/cui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 4.41 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 4.41 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "cui-server",
"version": "0.6.3",
"type": "module",
"description": "Web UI Agent Platform based on Claude Code",
"main": "dist/cui-server.js",
"bin": {
"cui-server": "dist/server.js"
},
"files": [
"dist/**/*",
"config/**/*",
"scripts/postinstall.js"
],
"keywords": [
"claude",
"claude-code",
"ai",
"web-ui",
"agent",
"mcp"
],
"author": "Wenbo Pan",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bmpixel/cui.git"
},
"bugs": {
"url": "https://github.com/bmpixel/cui/issues"
},
"homepage": "https://github.com/bmpixel/cui#readme",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development tsx watch src/server.ts",
"dev:web": "cross-env NODE_ENV=development npx vite",
"clean": "shx rm -rf dist",
"build": "run-s clean build:web build:ts build:mcp",
"build:web": "cross-env NODE_ENV=production vite build",
"build:ts": "tsc && tsc-alias",
"build:mcp": "shx chmod +x dist/mcp-server/index.js",
"start": "cross-env NODE_ENV=production node dist/server.js",
"test": "cross-env NODE_ENV=test vitest run",
"test:debug": "cross-env NODE_ENV=test LOG_LEVEL=debug vitest run",
"unit-tests": "cross-env NODE_ENV=test vitest run tests/unit",
"integration-tests": "cross-env NODE_ENV=test vitest run tests/integration",
"test:watch": "cross-env NODE_ENV=test vitest",
"test:coverage": "cross-env NODE_ENV=test vitest run --coverage",
"test:ui": "cross-env NODE_ENV=test vitest --ui",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"postinstall": "node scripts/postinstall.js"
},
"dependencies": {
"@anthropic-ai/claude-code": "^1.0.70",
"@anthropic-ai/sdk": "^0.54.0",
"@google/genai": "^1.11.0",
"@modelcontextprotocol/sdk": "^1.17.0",
"@musistudio/llms": "^1.0.19",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@types/prismjs": "^1.26.5",
"better-sqlite3": "^12.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cors": "^2.8.5",
"diff": "^8.0.2",
"eventsource": "^4.0.0",
"express": "^4.18.2",
"ignore": "^7.0.5",
"lightningcss": "^1.30.2",
"lucide-react": "^0.536.0",
"multer": "^2.0.2",
"node-fetch": "^2.7.0",
"pino": "^8.17.1",
"prism-react-renderer": "^2.4.1",
"prismjs": "^1.30.0",
"react": "^18.2.0",
"react-diff-viewer-continued": "^3.4.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.22.0",
"tailwind-merge": "^3.3.1",
"undici": "^7.12.0",
"uuid": "^11.1.0",
"web-push": "^3.6.7"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.11",
"@testing-library/react": "^16.3.0",
"@types/better-sqlite3": "^7.6.13",
"@types/cookie": "^0.6.0",
"@types/cors": "^2.8.17",
"@types/eventsource": "^3.0.0",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.13",
"@types/node": "^20.19.1",
"@types/node-fetch": "^2.6.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/supertest": "^6.0.3",
"@types/uuid": "^9.0.7",
"@types/web-push": "^3.6.4",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"eslint": "^9.32.0",
"happy-dom": "^18.0.1",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"shx": "^0.3.4",
"supertest": "^7.1.4",
"tailwindcss": "^4.1.11",
"tsc-alias": "^1.8.16",
"tsx": "^4.6.2",
"tw-animate-css": "^1.3.6",
"typescript": "^5.3.3",
"vite": "^7.0.6",
"vite-express": "^0.21.1",
"vite-plugin-pwa": "^1.0.2",
"vitest": "^3.2.4"
},
"optionalDependencies": {
"@tailwindcss/oxide-linux-x64-gnu": "^4.1.11",
"lightningcss-linux-x64-gnu": "^1.30.1"
}
}