forked from electron/fuses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.27 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
{
"name": "@electron/fuses",
"version": "0.0.0-development",
"main": "dist/index.js",
"license": "MIT",
"bin": {
"electron-fuses": "dist/bin.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "tsc",
"prepare": "husky install"
},
"devDependencies": {
"@electron/get": "^2.0.1",
"@electron/universal": "^1.3.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^29.0.3",
"@types/minimist": "^1.2.1",
"@types/node": "^14.11.2",
"extract-zip": "^2.0.1",
"husky": "^8.0.0",
"jest": "^29.0.3",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"ts-jest": "^29.0.1",
"typescript": "^4.3.3"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"chalk": "^4.1.1",
"fs-extra": "^9.0.1",
"minimist": "^1.2.5"
},
"files": [
"dist",
"README.md"
],
"description": "Flip Electron Fuses and customize your packaged build of Electron",
"repository": {
"type": "git",
"url": "git+https://github.com/electron/fuses.git"
},
"keywords": [
"electron",
"fuses"
],
"author": "Electron Community",
"bugs": {
"url": "https://github.com/electron/fuses/issues"
},
"homepage": "https://github.com/electron/fuses#readme"
}