-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 1.99 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
76
77
78
79
80
81
82
83
84
{
"name": "regodit",
"version": "2.4.1",
"description": "Read/Write Windows Registry using FFI and GoLang (x86, x64 and arm64)",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
},
"./promises": {
"types": "./types/promises.d.ts",
"default": "./lib/promises.js"
}
},
"types": "./types/index.d.ts",
"files": [
"lib/",
"dist/*.dll",
"types/"
],
"engines": {
"node": ">=20.18.0"
},
"scripts": {
"lint": "eslint \"./lib/**/*.{js,mjs}\" \"./types/**/*.d.ts\"",
"test": "node --test test/",
"check": "tsc --noemit --checkjs",
"declare": "tsc --declaration --emitDeclarationOnly --outDir \"./types\"",
"build:win": "powershell -NoProfile -ExecutionPolicy Bypass -File ./src/build.ps1",
"build:win:legacy": "call src\\build.cmd",
"build:linux": "sh ./src/build.sh"
},
"keywords": [
"regedit",
"registry",
"reg",
"windows",
"ffi",
"golang",
"cgo"
],
"author": {
"name": "Anthony Beaumont",
"email": "dev.xan105@outlook.be",
"url": "https://xan105.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xan105/node-cgo-regodit.git"
},
"bugs": {
"url": "https://github.com/xan105/node-cgo-regodit/issues"
},
"homepage": "https://github.com/xan105/node-cgo-regodit#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/xan105"
},
{
"type": "paypal",
"url": "https://www.paypal.me/xan105"
},
{
"type": "patreon",
"url": "https://www.patreon.com/xan105"
}
],
"dependencies": {
"@xan105/error": "^1.7.1",
"@xan105/ffi": "^1.3.0",
"@xan105/is": "^2.10.0",
"koffi": "^2.9.1"
},
"devDependencies": {
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"typescript": "^5.3.2"
}
}