-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "node-ctypes",
"version": "1.8.0",
"description": "Python ctypes-like FFI for Node.js using libffi",
"author": "Damiano Mazzella",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dmazzella/node-ctypes"
},
"bugs": {
"url": "https://github.com/dmazzella/node-ctypes/issues"
},
"homepage": "https://github.com/dmazzella/node-ctypes#readme",
"keywords": [
"ffi",
"ctypes",
"native",
"libffi"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"scripts": {
"build": "cmake-js compile --target ctypes",
"build:debug": "cmake-js compile --target ctypes --debug",
"rebuild": "cmake-js rebuild --target ctypes",
"clean": "cmake-js clean",
"generate-ffi-headers": "node third-party/libffi_cmake/generate-headers.js",
"docs": "typedoc",
"docs:serve": "typedoc && npx serve docs"
},
"devDependencies": {
"@types/node": "^25.3.3",
"cmake-js": "^8.0.0",
"node-addon-api": "^8.6.0",
"typedoc": "^0.28.17"
},
"engines": {
"node": ">=16.0.0"
}
}