-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.67 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.67 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": "amc-webui",
"private": true,
"version": "1.8.10",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:api": "tsc -p server/tsconfig.json",
"preview": "vite preview",
"clean": "rm -rf dist coverage playwright-report test-results tmp-live-artifact-demo .playwright-visible-demo-profile .codex-dev-server.*",
"lint": "eslint . --ext .ts,.tsx,.js,.mjs",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.mjs --fix",
"knip": "knip",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,css,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,mjs,css,json,md,yml,yaml}\"",
"typecheck": "tsc --noEmit",
"verify": "npm run format:check && npm run typecheck && npm run lint && npm run test && npm run knip && npm run build && npm run build:api",
"test:code-execution": "node scripts/runVitest.mjs run src/hooks/file-upload/utils.test.ts src/features/chat-streaming/processors.test.ts src/utils/chat/builder.test.ts src/hooks/live-api/useLiveMessageProcessing.test.tsx src/services/api/chatApi.test.ts src/services/api/generation/tokenApi.test.ts src/services/api/apiClient.test.ts src/services/api/liveApiAuth.test.ts src/services/api/generationConfig.test.ts",
"verify:code-execution:api": "node scripts/verify-code-execution.mjs",
"start:api": "node server/dist/index.js",
"test": "node scripts/runVitest.mjs run",
"test:watch": "node scripts/runVitest.mjs",
"test:coverage": "node scripts/runVitest.mjs run --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"@google/genai": "^1.50.1",
"@viz-js/viz": "^3.25.0",
"highlight.js": "^11.9.0",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1",
"jszip": "^3.10.1",
"katex": "^0.16.44",
"lamejs": "^1.2.1",
"lucide-react": "^0.417.0",
"mermaid": "^10.9.6",
"pdfjs-dist": "^4.10.38",
"pyodide": "^0.25.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-pdf": "^9.1.0",
"react-virtuoso": "^4.7.11",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2",
"zod": "^4.4.3",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/turndown": "^5.0.5",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.1.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"fake-indexeddb": "^6.2.5",
"hast": "^0.0.2",
"jsdom": "^29.0.1",
"knip": "^6.4.1",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.58.0",
"unified": "^11.0.5",
"vite": "^7.3.2",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-static-copy": "^3.4.0",
"vitest": "^4.1.5",
"workbox-core": "^7.4.0",
"workbox-precaching": "^7.4.0",
"workbox-routing": "^7.4.0",
"workbox-strategies": "^7.4.0"
},
"overrides": {
"dompurify": "^3.4.1",
"protobufjs": "7.5.8",
"uuid": "14.0.0",
"serialize-javascript": "7.0.5",
"postcss": "8.5.12"
}
}