-
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.23 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.23 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": "silverkey2",
"version": "0.0.2",
"description": "Tool for One-Liner Sharing",
"main": "./dist/main/main.js",
"repository": "git@github.com:dukov/silverkey2.git",
"author": "Dmitry Ukov <dukov@mirantis.com>",
"license": "Apache-2.0",
"devDependencies": {
"@types/jsdom": "^20.0.1",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"electron": "^22.0.3",
"electron-builder": "^23.6.0",
"electron-log": "^4.4.8",
"eslint": "^8.32.0",
"grpc": "^1.24.11",
"grpc-tools": "^1.12.4",
"grpc_tools_node_protoc_ts": "^5.3.3",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^21.1.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"octokit": "^2.0.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"lint": "cross-env NODE_ENV=development eslint . --ext .js,.jsx,.ts,.tsx",
"build": "webpack --config ./webpack.config.js",
"build-dbg": "cross-env DBG=1 webpack --config ./webpack.config.js",
"build-prod": "cross-env NODE_ENV=\"production\" webpack --config ./webpack.config.js",
"start": "yarn run build && electron .",
"start-prod": "yarn run build-prod && electron .",
"pack": "electron-builder --dir",
"dist": "yarn run build && electron-builder -p never",
"dist-prod": "yarn run build-prod && electron-builder -p always"
},
"build": {
"files": [
"./dist/main/**",
"./dist/renderer/**"
],
"appId": "com.electron.silverkey2",
"mac": {
"category": "public.app-category.productivity",
"identity": null
},
"linux": {
"target": "AppImage"
},
"extraResources": [
"./assets/**"
]
},
"electronWebpack": {
"commonSourceDirectory": "src/common",
"staticSourceDirectory": "src/static",
"main": {
"sourceDirectory": "src/main"
},
"renderer": {
"sourceDirectory": "src/renderer"
}
}
}