-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.05 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
{
"name": "code-release-tracker",
"description": "An Electron app for tracking software releases across multiple services or platforms",
"version": "0.2.6",
"author": "hiqqs",
"repository": {
"type": "git",
"url": "https://github.com/hiqqs/codeReleaseTracker.git"
},
"type": "module",
"main": "electron.cjs",
"scripts": {
"dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"build": "tsc -b && vite build",
"dist:win": "npm run build && electron-builder --win nsis",
"dist:win:publish": "npm run build && electron-builder --win nsis --publish always",
"lint": "eslint .",
"test": "themis test",
"test:generate": "themis generate src",
"preview": "vite preview"
},
"dependencies": {
"concurrently": "^8.2.2",
"electron-updater": "^6.6.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"wait-on": "^7.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitronai/themis": "^0.1.12",
"electron": "^30.0.0",
"electron-builder": "^26.0.12",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^8.0.1"
},
"build": {
"appId": "com.hiqqs.codereleasetracker",
"productName": "Code Release Tracker",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron.cjs",
"preload.js",
"package.json",
"splash.html",
"src/assets/**/*"
],
"publish": [
{
"provider": "github",
"owner": "hiqqs",
"repo": "codeReleaseTracker",
"releaseType": "release"
}
],
"win": {
"target": "nsis",
"icon": "src/assets/codeReleaseTrackerLogo.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}