-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 860 Bytes
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
{
"name": "@joaoh82/sqlrite",
"version": "0.14.0",
"description": "Node.js bindings for SQLRite — a small, embeddable SQLite clone written in Rust.",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/joaoh82/rust_sqlite"
},
"homepage": "https://github.com/joaoh82/rust_sqlite",
"license": "MIT",
"keywords": [
"database",
"sql",
"sqlite",
"embedded",
"rust",
"napi-rs"
],
"engines": {
"node": ">= 18"
},
"napi": {
"name": "sqlrite"
},
"files": [
"index.js",
"index.d.ts",
"sqlrite.*.node"
],
"scripts": {
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"test": "node --test test/test.mjs test/test_ask.mjs"
},
"devDependencies": {
"@napi-rs/cli": "^2.18.4"
}
}