-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.8 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
{
"name": "labml",
"private": true,
"version": "1.0.0",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --host 127.0.0.1 --port 4173 --strictPort",
"llm:prepare": "node scripts/prepare-llm.mjs",
"llm:bench": "node scripts/run-llm-bench.mjs",
"llm:bench:node": "LABML_LLM_BENCH=1 vitest run src/features/ai/llm/bench.node.test.ts",
"llm:fetch": "node scripts/prepare-llm.mjs .llm-cache --flat",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "playwright test",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"dependencies": {
"@duckdb/duckdb-wasm": "1.28.0",
"@fontsource-variable/bricolage-grotesque": "^5.3.0",
"@fontsource-variable/jetbrains-mono": "^5.3.0",
"@fontsource-variable/public-sans": "^5.3.0",
"@huggingface/transformers": "^4.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dexie": "^4.4.5",
"dexie-react-hooks": "^4.4.0",
"i18next": "^26.4.0",
"i18next-browser-languagedetector": "^8.2.1",
"lucide-react": "^1.33.0",
"lz-string": "^1.5.0",
"ml-cart": "^2.1.1",
"ml-random-forest": "^2.1.0",
"onnxruntime-web": "^1.27.0",
"papaparse": "^5.6.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-i18next": "^17.0.12",
"react-router": "^8.3.0",
"tailwind-merge": "^3.6.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"zustand": "^5.0.15"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@eslint/js": "^10.0.1",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.62.1",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.5",
"@types/node": "^26.2.0",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.1.0",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.4",
"globals": "^17.11.0",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.3.0",
"marked": "^18.0.10",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.2",
"vite-plugin-pwa": "^1.3.0",
"vite-plugin-static-copy": "^4.1.1",
"vitest": "^4.1.11",
"wrangler": "^4.125.0"
}
}