-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "luma",
"version": "1.1.0",
"license": "MIT",
"description": "Local-first AI research workbench powered by Ollama",
"scripts": {
"dev:vite": "vite",
"dev": "tauri dev",
"build:vite": "vite build",
"build": "tauri build",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:rust": "cd tauri && cargo test",
"test:all": "npm run test:run && npm run test:rust"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.3.5",
"lucide-react": "^0.383.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"temml": "^0.13.3",
"uuid": "^9.0.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.3.1",
"jsdom": "^24.1.0",
"vite": "^5.3.1",
"vitest": "^1.6.0"
}
}