-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.55 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.55 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "gh-notification-manager",
"productName": "gh-notification-manager",
"version": "3.1.4",
"description": "A better GitHub notification experience",
"main": "bootstrap.js",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "tsc && node scripts/bundle-main.mjs && concurrently -k \"npm:dev:renderer\" \"npm:dev:electron\"",
"dev:renderer": "vite",
"dev:electron": "wait-on tcp:5173 && electron .",
"build": "tsc && vite build && node scripts/bundle-main.mjs && node scripts/create-payload-zip.mjs",
"dist:mac": "npm run build && electron-builder --mac --publish never",
"dist:win": "npm run build && electron-builder --win --publish never",
"dist:linux": "npm run build && electron-builder --linux --publish never",
"start": "electron .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"typecheck": "tsc",
"clean": "rm -rf dist release"
},
"keywords": [],
"author": {
"name": "Joe Harvey",
"email": "51208233+jharvey10@users.noreply.github.com"
},
"license": "Apache-2.0",
"build": {
"appId": "com.jharvey10.gh-notification-manager",
"productName": "GitHub Notification Manager",
"publish": null,
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"bootstrap.js"
],
"mac": {
"icon": "assets/app-icon.png",
"target": [
"dmg"
]
},
"win": {
"icon": "assets/app-icon.png",
"target": [
"nsis"
]
},
"linux": {
"icon": "assets/app-icon.png",
"category": "Utility",
"target": [
"AppImage"
]
}
},
"dependencies": {
"@octokit/graphql": "^9.0.3",
"@octokit/rest": "^22.0.1",
"adm-zip": "^0.5.17",
"clsx": "^2.1.1",
"prop-types": "^15.8.1",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"concurrently": "^9.2.1",
"daisyui": "^5.5.19",
"electron": "40.8.5",
"electron-builder": "^26.8.2",
"esbuild": "^0.27.7",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.5.0",
"prettier": "^3.8.2",
"tailwindcss": "^4.2.0",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vite-plugin-svgr": "^4.5.0",
"wait-on": "^9.0.5"
}
}