-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.44 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.44 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
{
"name": "devs",
"private": true,
"version": "0.7.4",
"license": "MIT",
"type": "module",
"sideEffects": false,
"scripts": {
"predev": "npm run scripts",
"dev": "vite",
"prebuild": "npm run scripts && npm run build:extension-components",
"build": "tsc && vite build && npm run sitemap",
"build:extension-components": "vite build --config vite.extension-components.config.ts",
"build:prerender": "npm run build && npm run prerender",
"prerender": "node scripts/prerender.js",
"sitemap": "node scripts/generate-sitemap.js",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"preview:prerender": "npx http-serve dist",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:smoke": "playwright test tests/e2e/core-user-journeys.spec.ts",
"test:e2e:report": "playwright show-report",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"scripts": "./src/scripts/prepare-config-files.js"
},
"dependencies": {
"@heroui/react": "^2.8.7",
"@huggingface/transformers": "^4.0.0-next",
"@marp-team/marpit": "^3.2.0",
"@mermaid-js/layout-elk": "^0.2.0",
"@monaco-editor/react": "^4.7.0",
"@y/websocket-server": "^0.1.1",
"abcjs": "^6.6.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"echarts": "^6.0.0",
"echarts-for-react": "^3.0.6",
"framer-motion": "^12.29.2",
"html5-qrcode": "^2.3.8",
"iconoir-react": "^7.11.0",
"katex": "^0.16.28",
"kokoro-js": "^1.2.1",
"langfuse": "^3.38.4",
"mammoth": "^1.11.0",
"marked": "^17.0.1",
"mermaid": "^11.12.2",
"monaco-mermaid": "^1.1.0",
"monaco-yaml": "^5.4.0",
"nanoid": "^5.1.6",
"pdfjs-dist": "^5.4.530",
"postal-mime": "^2.7.3",
"pretty-bytes": "^7.1.0",
"qrcode": "^1.5.4",
"quickjs-emscripten": "^0.32.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.0",
"simple-icons": "^16.6.1",
"tokentally": "^0.1.1",
"y-indexeddb": "^9.0.12",
"y-webrtc": "^10.3.0",
"y-websocket": "^3.0.0",
"yjs": "^13.6.29",
"zustand": "^5.0.10"
},
"devDependencies": {
"@heroui/theme": "^2.4.20",
"@mdx-js/rollup": "^3.1.0",
"@playwright/test": "^1.55.0",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/vite": "^4.1.11",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/dom-speech-recognition": "^0.0.6",
"@types/marked": "^5.0.2",
"@types/node": "^24.1.0",
"@types/qrcode": "^1.5.5",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-basic-ssl": "^2.1.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"glob": "^11.0.3",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"puppeteer": "^24.32.0",
"typescript": "^5.8.0",
"vite": "^7.3.1",
"vite-plugin-virtual-mpa": "^1.12.1",
"vitest": "^3.2.4",
"yaml": "^2.8.1"
}
}