forked from sentialx/electron-global
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.6 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
{
"name": "electron-global",
"version": "0.0.2",
"description": "Tool for building lightweight Electron apps",
"main": "build/index.js",
"scripts": {
"lint": "eslint \"src/**/*.ts*\" \"src/**/*.tsx*\"",
"lint-fix": "npm run lint -- --fix",
"build": "tsc",
"dev": "tsc --watch"
},
"bin": {
"electron-global": "./build/cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sentialx/electron-global.git"
},
"keywords": [
"tool",
"electron",
"runtime",
"cli",
"lightweight",
"builder"
],
"author": "sentialx <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sentialx/electron-global/issues"
},
"homepage": "https://github.com/sentialx/electron-global#readme",
"devDependencies": {
"@types/extract-zip": "^1.6.2",
"@types/follow-redirects": "^1.5.0",
"@types/mkdirp": "^0.5.2",
"@types/ncp": "^2.0.1",
"@types/node": "^12.7.2",
"@types/phin": "^3.3.0",
"@types/rimraf": "^2.0.2",
"@types/semver": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"typescript": "^3.5.3"
},
"dependencies": {
"axios": "^0.19.0",
"extract-zip": "^1.6.7",
"follow-redirects": "^1.7.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"phin": "^3.4.0",
"rimraf": "^3.0.0",
"semver": "^6.3.0",
"commander": "^3.0.0"
},
"files": [
"build/",
"resources/"
]
}