-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.1 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@xan105/ffi",
"version": "1.3.0",
"description": "Friendly abstraction/API for FFI with a Deno like syntax.",
"type": "module",
"exports": {
"./napi": {
"types": "./types/ffi-napi/index.d.ts",
"default": "./lib/ffi-napi/index.js"
},
"./koffi": {
"types": "./types/koffi/index.d.ts",
"default": "./lib/koffi/index.js"
}
},
"files": [
"/lib/ffi-napi",
"/lib/koffi",
"/lib/util.js",
"/types/ffi-napi",
"/types/koffi",
"/types/util.d.ts"
],
"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\""
},
"keywords": [
"ffi",
"dlopen",
"ffi-napi",
"koffi",
"foreign",
"function",
"interface"
],
"author": {
"name": "Anthony Beaumont",
"email": "[email protected]",
"url": "https://xan105.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xan105/node-ffi.git"
},
"bugs": {
"url": "https://github.com/xan105/node-ffi/issues"
},
"homepage": "https://github.com/xan105/node-ffi#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": {
"@types/ffi-napi": "^4.0.10",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"ffi-napi": "^4.0.3",
"koffi": "^2.9.1",
"typescript": "^5.4.4"
},
"dependencies": {
"@xan105/error": "^1.7.1",
"@xan105/is": "^2.10.0"
},
"peerDependencies": {
"ffi-napi": "^4.0.3",
"koffi": "^2.9.1"
},
"peerDependenciesMeta": {
"ffi-napi": {
"optional": true
},
"koffi": {
"optional": true
}
}
}