-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "solver",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"electron": "electron .",
"start": "concurrently \"vite\" \"electron .\"",
"dist": "electron-builder"
},
"build": {
"appId": "com.yourdomain.localllm",
"productName": "Solver",
"files": [
"dist/**/*",
"main.js",
"preload.js",
"ocr/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"buildResources": "build"
},
"win": {
"target": "nsis",
"icon": "src/logo.ico"
}
},
"dependencies": {
"@huggingface/inference": "^4.2.0",
"@tailwindcss/vite": "^4.1.11",
"katex": "^0.16.22",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.0",
"concurrently": "^8.2.0",
"electron": "^28.1.0",
"electron-builder": "^24.13.3",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.17",
"vite": "^7.0.0"
}
}