forked from qinsehm1128/claude-code-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.26 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": "@formagent/formagent-webui",
"version": "0.1.2",
"type": "module",
"main": "src/index.tsx",
"module": "src/index.tsx",
"files": [
"bin",
"src",
"assets",
"dist",
"README.md",
"README_ZH.md"
],
"scripts": {
"dev": "CLAUDE_CODE_WEBUI_USE_DIST=0 bun --hot src/index.tsx",
"build": "bun run scripts/build.ts",
"start": "NODE_ENV=production bun src/index.tsx",
"prepublishOnly": "bun run build"
},
"bin": {
"formagent-webui": "bin/cli.js"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"formagent-sdk": "^0.1.2",
"highlight.js": "^11.10.0",
"hono": "^4.11.3",
"localforage": "^1.10.0",
"react": "^19",
"react-dom": "^19",
"react-markdown": "^9.0.1",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"bun-plugin-tailwind": "^0.1.2",
"postcss": "^8.4.38",
"tailwindcss": "^4.1.18",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
}
}