-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "probsweeper",
"private": true,
"version": "0.0.0",
"description": "A modern Minesweeper with a probability engine",
"author": "LinZhanzhi",
"main": "electron/main.cjs",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "electron .",
"dist": "npm run build && electron-builder"
},
"dependencies": {
"@google/genai": "^1.33.0",
"html2canvas": "^1.4.1",
"lucide-react": "^0.561.0",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"electron": "^33.2.1",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "com.linzhanzhi.probsweeper",
"productName": "ProbSweeper",
"directories": {
"output": "release"
},
"files": [
"electron/main.cjs",
"dist/**/*"
],
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}