-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.86 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
{
"name": "@xan105/remote-thread",
"version": "1.1.0",
"description": "NAPI Native addon for Windows DLL injection with support for Wow64 and Unicode path",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
}
},
"types": "./types/index.d.ts",
"files": [
"/lib",
"/src",
"/prebuild",
"/types",
"/binding.gyp"
],
"engines": {
"node": ">=22.11.0",
"npm": "^10.9.0"
},
"gypfile": true,
"scripts": {
"install": "addons",
"build:x86": "node-gyp rebuild --arch=ia32",
"build:x64": "node-gyp rebuild --arch=x64",
"build:arm64": "node-gyp rebuild --arch=arm64",
"sri": "addons-sri --algo sha384",
"clean": "node-gyp clean",
"lint": "biome lint",
"declare": "tsc --emitDeclarationOnly"
},
"keywords": [
"DLL",
"Injection",
"CreateRemoteThread",
"LoadLibrary",
"Kernel32",
"Wow64",
"Unicode"
],
"author": {
"name": "Anthony Beaumont",
"email": "[email protected]",
"url": "https://xan105.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xan105/node-remote-thread.git"
},
"bugs": {
"url": "https://github.com/xan105/node-remote-thread/issues"
},
"homepage": "https://github.com/xan105/node-remote-thread#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"
}
],
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/node": "^22.7.4",
"typescript": "^5.6.2"
},
"dependencies": {
"@xan105/addons": "^2.1.1",
"@xan105/error": "^1.7.1",
"@xan105/is": "^2.10.1",
"node-addon-api": "^8.2.2"
}
}