-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "native-reg",
"description": "Native in-process low-level windows registry access.",
"version": "1.1.1",
"repository": "https://github.com/simonbuchan/native-reg",
"bugs": "https://github.com/simonbuchan/native-reg/issues",
"license": "MIT",
"keywords": [
"windows",
"win32",
"registry",
"native"
],
"volta": {
"node": "20.14.0",
"yarn": "1.22.19"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src",
"test",
"prebuilds",
"binding.gyp",
"*.cc"
],
"scripts": {
"install": "node-gyp-build-optional",
"prepack": "yarn rebuild",
"rebuild": "yarn clean && yarn build && yarn test",
"clean": "rimraf build lib prebuilds",
"build": "yarn build:js && yarn build:ia32 && yarn build:x64 && yarn build:arm64",
"build:js": "tsc -p src",
"build:ia32": "prebuildify --napi --target node@20.14.0 --arch ia32",
"build:x64": "prebuildify --napi --target node@20.14.0 --arch x64",
"build:arm64": "prebuildify --napi --target node@20.14.0 --arch arm64",
"test": "mocha --ui tdd"
},
"dependencies": {
"node-gyp-build": "^4.8.1"
},
"devDependencies": {
"@types/node": "20",
"mocha": "10",
"node-addon-api": "4",
"prebuildify": "6",
"rimraf": "5",
"typescript": "~4.4"
}
}