-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.1 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@electron/rebuild",
"version": "0.0.0-development",
"description": "Electron supporting package to rebuild native node modules against the currently installed electron",
"type": "module",
"exports": "./lib/main.js",
"typings": "lib/main.d.ts",
"scripts": {
"build": "tsc",
"build:docs": "typedoc src/main.ts",
"coverage": "yarn prewarm-headers && yarn spec --coverage",
"watch": "tsc -w",
"prepare": "yarn build",
"lint": "eslint --ext .ts .",
"spec": "tsc && vitest run",
"test": "yarn prewarm-headers && yarn lint && yarn spec",
"prewarm-headers": "node-gyp install --ensure"
},
"bin": {
"electron-rebuild": "lib/cli.js"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/electron/rebuild.git"
},
"keywords": [
"electron"
],
"authors": [
"Ani Betts <anais@anaisbetts.org>",
"Electron Community"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/electron/rebuild/issues"
},
"homepage": "https://github.com/electron/rebuild",
"engines": {
"node": ">=22.12.0"
},
"publishConfig": {
"provenance": true
},
"dependencies": {
"@malept/cross-spawn-promise": "^2.0.0",
"debug": "^4.1.1",
"node-abi": "^4.2.0",
"node-api-version": "^0.2.1",
"node-gyp": "^12.2.0",
"read-binary-file-arch": "^1.0.6"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/debug": "^4.1.5",
"@types/node": "~22.10.7",
"@types/node-abi": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^4.1.2",
"electron": "^39.8.5",
"eslint": "^7.7.0",
"typedoc": "~0.25.13",
"typescript": "~5.4.5",
"vitest": "^4.1.2"
},
"resolutions": {
"@typescript-eslint/typescript-estree/minimatch": "^9.0.7"
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f",
"dependenciesMeta": {
"electron": {
"built": true
}
}
}