-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.32 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.32 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
{
"name": "thirdeye-git",
"version": "2.2.3",
"description": "ThirdEye.git — GitHub repository monitoring desktop app",
"main": "dist/main.js",
"scripts": {
"build:main": "npx webpack --config webpack.main.config.js",
"build:renderer": "npx webpack --config webpack.renderer.config.js",
"build": "npm run build:main && npm run build:renderer",
"start": "npm run build && npx electron .",
"dev": "npx concurrently \"npx webpack --config webpack.main.config.js --watch\" \"npx webpack --config webpack.renderer.config.js --watch\" \"sleep 3 && npx electron .\"",
"pack": "npm run build && npx electron-builder --dir",
"dist": "npm run build && npx electron-builder",
"dist:mac": "npm run build && npx electron-builder --mac",
"dist:win": "npm run build && npx electron-builder --win",
"dist:linux": "npm run build && npx electron-builder --linux",
"dist:all": "npm run build && npx electron-builder --mac --win --linux",
"release": "npm run build && npx electron-builder --publish always",
"release:mac": "npm run build && npx electron-builder --mac --publish always",
"release:win": "npm run build && npx electron-builder --win --publish always",
"release:linux": "npm run build && npx electron-builder --linux --publish always",
"release:all": "npm run build && npx electron-builder --mac --win --linux --publish always"
},
"author": "Jakub Duchek",
"license": "BSD-3-Clause",
"type": "commonjs",
"dependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@mui/icons-material": "^6.0.0",
"@mui/material": "^6.0.0",
"@octokit/rest": "^21.0.0",
"@reduxjs/toolkit": "^2.0.0",
"electron-store": "^10.0.0",
"electron-updater": "^6.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.0.0",
"react-redux": "^9.0.0",
"react-router-dom": "^7.0.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"concurrently": "^9.2.1",
"electron": "^35.0.0",
"css-loader": "^7.1.4",
"electron-builder": "^26.8.1",
"html-webpack-plugin": "^5.6.6",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1"
}
}