-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.82 KB
/
package.json
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
{
"name": "youtracker",
"productName": "YouTracker",
"version": "1.3.2",
"description": "",
"main": "build/main.bundle.js",
"scripts": {
"start": "webpack --mode=development && electron .",
"build": "webpack --mode=production && electron-builder",
"test": "webpack --config webpack.config.test.js && mocha \"./build-test/**/*.js\"",
"publish": "webpack --mode=production && electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.0",
"css-loader": "^6.7.2",
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"glob": "^8.0.3",
"mocha": "^10.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"assert": "^2.0.0"
},
"dependencies": {
"@electron/remote": "^2.0.9",
"electron-log": "^4.4.8",
"electron-store": "^8.1.0",
"electron-updater": "^5.3.0",
"keytar": "^7.9.0",
"node-fetch": "^3.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"build": {
"appId": "ru.smarthead.YouTracker",
"extraMetadata": {
"main": "build/main.bundle.js"
},
"files": [
"build/**/*",
"static/**/*",
"node_modules/**/*.node"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"darkModeSupport": true,
"target": {
"target": "dmg",
"arch": ["x64", "arm64"]
},
"artifactName": "${productName}-${arch}.${ext}"
},
"win": {
"target": "nsis",
"artifactName": "${productName}-installer.${ext}"
},
"linux": {
"target": "AppImage",
"artifactName": "${productName}.${ext}"
}
}
}