-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
39 lines (39 loc) · 978 Bytes
/
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
{
"name": "@electron/build-tools",
"version": "0.0.0-development",
"description": "A wrapper toolkit for working with Electron.js source code",
"main": "index.js",
"bin": {
"e": "./run.js",
"electron-build-tools": "./run.js"
},
"files": [
"preinstall.js",
"run.js"
],
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"preinstall": "node preinstall.js",
"lint": "prettier --check \"**/*.js\"",
"prettier:write": "prettier --write \"**/*.js\"",
"test": "node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/build-tools-installer.git"
},
"author": "Shelley Vohr <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/electron/build-tools-installer/issues"
},
"homepage": "https://github.com/electron/build-tools-installer#readme",
"publishConfig": {
"provenance": true
},
"devDependencies": {
"prettier": "^3.3.3"
}
}