-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.18 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.18 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
{
"name": "freshell",
"private": true,
"version": "0.6.0",
"type": "module",
"bin": {
"freshell": "dist/server/cli/index.js"
},
"scripts": {
"predev": "cross-env PORT=3002 tsx scripts/precheck.ts",
"preserve": "tsx scripts/precheck.ts",
"dev": "cross-env PORT=3002 concurrently -n client,server -c blue,green \"vite\" \"tsx watch server/index.ts\"",
"dev:client": "vite",
"dev:server": "cross-env PORT=3002 tsx watch server/index.ts",
"typecheck": "npm run typecheck:client && npm run typecheck:server",
"typecheck:client": "tsc -p tsconfig.json --noEmit",
"typecheck:server": "tsc -p tsconfig.server.json --noEmit",
"prebuild": "tsx scripts/prebuild-guard.ts",
"build": "npm run typecheck:client && npm run build:client && npm run build:server",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/server/index.js",
"serve": "npm run build && npm run start",
"test": "vitest run && vitest run --config vitest.server.config.ts",
"verify": "npm run build && npm test",
"check": "npm run typecheck && npm test",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:server": "vitest --config vitest.server.config.ts",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run test/unit",
"test:integration": "vitest run --config vitest.server.config.ts test/server",
"test:client": "vitest run test/unit/client",
"test:all": "vitest run && vitest run --config vitest.server.config.ts",
"smoke:browser-use": "python3 test/browser_use/smoke_freshell.py",
"prepare:icons": "node assets/icons/prepare-icons.mjs",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"@ai-sdk/google": "^3.0.29",
"@anthropic-ai/claude-agent-sdk": "^0.2.40",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@monaco-editor/react": "^4.6.0",
"@reduxjs/toolkit": "^2.3.0",
"@use-gesture/react": "^10.3.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"ai": "^6.0.86",
"chokidar": "^3.6.0",
"cookie-parser": "^1.4.7",
"diff": "^8.0.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"glob": "^13.0.0",
"html2canvas": "^1.4.1",
"is-port-reachable": "^4.0.0",
"lean-qr": "^2.7.1",
"lucide-react": "^0.469.0",
"monaco-editor": "^0.52.0",
"nanoid": "^5.0.7",
"node-pty": "^1.2.0-beta.10",
"pino": "^9.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.2",
"react-syntax-highlighter": "^16.1.1",
"react-window": "^2.2.6",
"remark-gfm": "^4.0.0",
"rotating-file-stream": "^3.2.8",
"ws": "^8.18.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^4.17.21",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-window": "^1.8.8",
"@types/supertest": "^6.0.2",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"eslint": "^9.39.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^17.3.0",
"jsdom": "^25.0.1",
"pino-pretty": "^11.3.0",
"postcss": "^8.4.49",
"supertest": "^7.0.0",
"superwstest": "^1.1.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.4.1",
"vitest": "^3.2.4"
}
}