forked from node-ffi-napi/ref-napi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1012 Bytes
/
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
{
"name": "@eleccookie/ref-napi",
"description": "Turn Buffer instances into \"pointers\"",
"engines": {
"node": ">= 12.22.12"
},
"keywords": [
"native",
"buffer",
"extensions",
"c++",
"pointer",
"reference",
"dereference",
"type",
"int",
"long",
"float",
"double",
"byte",
"64",
"napi"
],
"version": "0.0.2",
"license": "MIT",
"author": "Anna Henningsen <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/node-ffi-napi/ref-napi.git"
},
"main": "./lib/ref.js",
"types": "types/index.d.ts",
"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --tag-armv --tag-uv --tag-libc"
},
"dependencies": {
"debug": "^4.3.4",
"get-symbol-from-current-process-h": "^1.0.2",
"node-addon-api": "^3.2.1",
"node-gyp-build": "^4.5.0"
},
"devDependencies": {
"@types/node": "^22.5.4",
"prebuildify": "^5.0.1",
"weak-napi": "^2.0.0"
}
}