-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.97 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
{
"name": "git-project-updater",
"version": "0.4.0",
"description": "Electron app for scanning WSL projects and running dependency + git updates.",
"main": "dist/main/main.js",
"author": "User",
"license": "MIT",
"scripts": {
"dev": "concurrently \"vite\" \"tsc -p tsconfig.main.json -w\" \"wait-on tcp:5173 && wait-on dist/main/main.js && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .\"",
"build": "npm run build:renderer && npm run build:main",
"build:renderer": "vite build",
"build:main": "tsc -p tsconfig.main.json",
"start": "electron .",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.main.json",
"dist": "npm run build && electron-builder",
"release": "release-it"
},
"dependencies": {
"electron-store": "^8.2.0",
"electron-updater": "^6.8.3",
"lucide-react": "^0.543.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.5",
"@types/node": "^22.18.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^35.7.5",
"electron-builder": "^26.8.1",
"release-it": "^19.2.4",
"typescript": "^5.9.2",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.user.gitprojectupdater",
"productName": "Git Project Updater",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"package.json"
],
"win": {
"target": [
"nsis",
"portable"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"publish": {
"provider": "github",
"owner": "dbfx",
"repo": "git-projects-updater",
"releaseType": "release"
}
}
}