-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 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
{
"name": "@stoolap/node",
"version": "0.3.3",
"description": "High-performance Node.js driver for Stoolap embedded SQL database",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"binaryName": "stoolap",
"targets": [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-pc-windows-msvc"
]
},
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"build": "napi build --platform --release --no-dts-header && node scripts/patch-dts.mjs",
"build:debug": "napi build --platform --no-dts-header && node scripts/patch-dts.mjs",
"test": "node --test __test__/index.spec.mjs",
"prepublishOnly": "napi version"
},
"optionalDependencies": {
"@stoolap/node-darwin-arm64": "0.3.3",
"@stoolap/node-darwin-x64": "0.3.3",
"@stoolap/node-linux-x64-gnu": "0.3.3",
"@stoolap/node-linux-arm64-gnu": "0.3.3",
"@stoolap/node-win32-x64-msvc": "0.3.3"
},
"devDependencies": {
"@napi-rs/cli": "^3.0.0",
"better-sqlite3": "^12.6.2"
},
"engines": {
"node": ">= 22"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/stoolap/stoolap-node.git"
},
"bugs": {
"url": "https://github.com/stoolap/stoolap-node/issues"
},
"homepage": "https://github.com/stoolap/stoolap-node",
"keywords": [
"database",
"sql",
"embedded",
"mvcc",
"acid",
"stoolap",
"napi",
"native"
]
}