-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "@electron/build-tools",
"version": "0.0.0-development",
"description": "A wrapper toolkit for working with Electron.js source code",
"main": "index.js",
"type": "module",
"bin": {
"e": "./run.js",
"electron-build-tools": "./run.js"
},
"files": [
"preinstall.js",
"run.js",
"path.js"
],
"engines": {
"node": ">=22.12.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 <shelley.vohr@gmail.com>",
"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.7.4"
},
"packageManager": "yarn@4.11.0+sha512.4e54aeace9141df2f0177c266b05ec50dc044638157dae128c471ba65994ac802122d7ab35bcd9e81641228b7dcf24867d28e750e0bcae8a05277d600008ad54"
}