forked from smarthead/YouTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.75 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
{
"name": "youtracker",
"productName": "YouTracker",
"version": "1.3.0",
"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.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"electron": "^16.0.7",
"electron-builder": "^22.14.5",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"style-loader": "^3.3.1",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"assert": "^2.0.0"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"electron-log": "^4.4.4",
"electron-store": "^8.0.1",
"electron-updater": "^4.6.5",
"keytar": "^7.7.0",
"node-fetch": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"build": {
"appId": "ru.smarthead.YouTracker",
"extraMetadata": {
"main": "build/main.bundle.js"
},
"files": [
"build/**/*",
"static/**/*",
"node_modules/**/*.node"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"darkModeSupport": true,
"target": "dmg",
"artifactName": "${productName}.${ext}"
},
"win": {
"target": "nsis",
"artifactName": "${productName}-installer.${ext}"
},
"linux": {
"target": "AppImage",
"artifactName": "${productName}.${ext}"
}
}
}