-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.52 KB
/
package.json
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
{
"name": "winreglib",
"version": "3.0.0",
"description": "Windows Registry utility library",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.js",
"gypfile": true,
"author": "TiDev, Inc. <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"windows",
"windows registry",
"registry",
"winreg",
"microsoft"
],
"scripts": {
"build": "pnpm build:bundle && pnpm rebuild",
"build:bundle": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript && pnpm build:types",
"build:types": "pnpm build:types:temp && pnpm build:types:roll && pnpm build:types:check",
"build:types:temp": "tsc --declaration --emitDeclarationOnly --outDir temp --project tsconfig.build.json",
"build:types:roll": "rollup --config rollup.dts.config.ts --configPlugin typescript && rimraf temp",
"build:types:check": "tsc --project tsconfig.check.json",
"check": "biome check --write .",
"clean": "node-gyp clean",
"coverage": "vitest --pool=forks --coverage",
"install": "node scripts/build.js",
"prepublishOnly": "pnpm build:bundle && pnpm prebuild",
"prebuild": "pnpm pnpm prebuild-ia32 && pnpm prebuild-x64",
"prebuild-arm": "prebuildify --napi --strip --platform=win32 --arch arm",
"prebuild-arm64": "prebuildify --napi --strip --platform=win32 --arch arm64",
"prebuild-ia32": "prebuildify --napi --strip --platform=win32 --arch ia32",
"prebuild-x64": "prebuildify --napi --strip --platform=win32 --arch x64",
"rebuild": "node-gyp rebuild",
"rebuild:debug": "node-gyp rebuild --debug",
"test": "vitest --allowOnly --pool=forks",
"type-check": "tsc --noEmit"
},
"dependencies": {
"napi-macros": "2.2.2",
"node-gyp": "10.2.0",
"node-gyp-build": "4.8.2",
"snooplogg": "6.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rollup/plugin-typescript": "12.1.1",
"@types/node": "22.9.1",
"@vitest/coverage-v8": "2.0.5",
"esbuild": "0.24.0",
"lefthook": "1.8.4",
"prebuildify": "6.0.1",
"rimraf": "6.0.1",
"rollup": "4.27.3",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-esbuild": "6.1.1",
"tslib": "2.8.1",
"typescript": "5.6.3",
"vitest": "2.0.5"
},
"files": [
"dist",
"prebuilds",
"scripts/build.js",
"src/*.{cpp,h}",
"binding.gyp"
],
"homepage": "https://github.com/tidev/winreglib",
"bugs": "https://github.com/tidev/winreglib/issues",
"repository": "https://github.com/tidev/winreglib",
"engines": {
"node": ">=18.17"
}
}