-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.9 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.9 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
{
"name": "build-tools",
"version": "0.2.0",
"type": "module",
"engines": {
"node": ">= 22.18.0"
},
"main": "null",
"private": true,
"scripts": {
"build": "tsc && npm run build:copy",
"build:copy": "node scripts/copy-assets.js",
"build:schema": "node dist/gen-schema.js",
"lint:markdown": "electron-markdownlint \"**/*.md\"",
"lint:ts": "prettier --check \"src/**/*.ts\" \"tests/*.js\"",
"lint": "npm run lint:ts && npm run lint:markdown",
"prettier:write": "prettier --write \"src/**/*.ts\" \"tests/*.js\"",
"prepare": "husky && npm run build",
"test": "nyc --reporter=lcov --reporter=text-summary vitest run --reporter=verbose --exclude tests/bootstrap.spec.mjs",
"test:all": "nyc --reporter=lcov --reporter=text-summary vitest run --reporter=verbose"
},
"repository": "https://github.com/electron/build-tools",
"author": "Electron Authors",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"@octokit/auth-oauth-device": "^8.0.3",
"@octokit/rest": "^22.0.1",
"commander": "^9.0.0",
"debug": "^4.4.3",
"extract-zip": "^2.0.1",
"open": "^6.4.0",
"progress": "^2.0.3",
"readline-sync": "^1.4.10",
"semver": "^7.6.0",
"yaml": "^2.8.3",
"zod": "^4.0.0"
},
"devDependencies": {
"@electron/lint-roller": "^1.13.0",
"@tsconfig/node22": "^22.0.5",
"@types/debug": "^4.1.13",
"@types/node": "^22.0.0",
"@types/progress": "^2.0.7",
"@types/readline-sync": "^1.4.8",
"@types/semver": "^7.5.0",
"husky": "^9.1.6",
"lint-staged": "^16.4.0",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"typescript": "^6.0.0",
"vitest": "~3.0.6"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}