-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.82 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.82 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
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
{
"name": "lua-state",
"version": "1.2.0",
"nativeVersion": "1.2.0",
"description": "Run real Lua (5.1-5.4 & LuaJIT) inside Node.js - native N-API bindings with prebuilt binaries and full TypeScript support.",
"keywords": [
"lua",
"luajit",
"embed lua",
"lua bindings",
"lua bridge",
"lua integration",
"lua runtime",
"lua scripting",
"lua vm",
"ffi",
"native addon",
"node lua",
"node addon",
"napi"
],
"homepage": "https://github.com/quaternion/node-lua-state#readme",
"license": "MIT",
"author": "quaternion",
"type": "commonjs",
"main": "./js/index.js",
"module": "./js/index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"require": "./js/index.js",
"import": "./js/index.mjs",
"types": "./types/index.d.ts"
}
},
"gypfile": false,
"preferUnplugged": true,
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/quaternion/node-lua-state.git"
},
"files": [
"bin",
"build-tools",
"js",
"scripts",
"src",
"types",
"binding.gyp"
],
"binary": {
"module_name": "node-lua-state",
"module_path": "prebuilds/{platform}-{arch}/",
"napi_versions": [
8
]
},
"bin": {
"lua-state": "./bin/lua-state.js"
},
"scripts": {
"format": "biome format --write .",
"bench": "node scripts/bench.js",
"install": "node scripts/install.js",
"lint": "biome check .",
"test": "node --test tests/**/*.test.js"
},
"dependencies": {
"commander": "^14.0.2",
"detect-libc": "^2.1.1",
"picomatch": "^4.0.3"
},
"optionalDependencies": {
"node-addon-api": "^8.5.0",
"node-gyp": "^11.5.0"
},
"peerDependencies": {
"tar": "7.x"
},
"devDependencies": {
"@biomejs/biome": "2.3.2"
}
}