This repository was archived by the owner on Apr 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "rcedit",
"version": "0.0.0-development",
"description": "Node module to edit resources of exe",
"type": "module",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"files": [
"bin",
"lib/index.d.ts",
"lib/index.js"
],
"scripts": {
"docs:build": "node script/build-docs.js",
"mocha": "mocha test/*.js",
"test": "npm run lint && npm run tsd && npm run mocha",
"lint": "npm run lint:js && npm run lint:ts",
"lint:js": "standard",
"lint:ts": "ts-standard",
"tsd": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/node-rcedit.git"
},
"bugs": {
"url": "https://github.com/electron/node-rcedit/issues"
},
"license": "MIT",
"engines": {
"node": ">= 22.12.0"
},
"publishConfig": {
"provenance": true
},
"dependencies": {
"cross-spawn-windows-exe": "^1.1.0"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"mocha": "^10.8.2",
"standard": "^17.1.0",
"temp": "^0.9.4",
"ts-standard": "^12.0.2",
"tsd": "^0.25.0",
"typedoc": "^0.24.8",
"typescript": "^5.9.3"
},
"tsd": {
"directory": "test"
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}