-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.93 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
{
"name": "better-sqlite3",
"version": "13.0.1",
"description": "The fastest and simplest library for SQLite in Node.js.",
"homepage": "http://github.com/WiseLibs/better-sqlite3",
"author": "Joshua Wise <joshuathomaswise@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/WiseLibs/better-sqlite3.git"
},
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./linux-x64": "./lib/linux-x64.js",
"./linux-arm64": "./lib/linux-arm64.js",
"./linuxmusl-x64": "./lib/linuxmusl-x64.js",
"./linuxmusl-arm64": "./lib/linuxmusl-arm64.js",
"./darwin-x64": "./lib/darwin-x64.js",
"./darwin-arm64": "./lib/darwin-arm64.js",
"./win32-x64": "./lib/win32-x64.js",
"./win32-arm64": "./lib/win32-arm64.js",
"./package.json": "./package.json"
},
"files": [
"binding.gyp",
"src/**/*.[ch]pp",
"lib/**",
"deps/**",
"prebuilds/**",
"scripts/install.js"
],
"engines": {
"node": ">=20.3.0"
},
"dependencies": {
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"chai": "^4.3.8",
"cli-color": "^2.0.3",
"fs-extra": "^11.1.1",
"mocha": "^11.7.5",
"node-gyp": "^10.3.1",
"nodemark": "^0.3.0",
"prebuildify": "^6.0.1",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6"
},
"scripts": {
"install": "node scripts/install.js",
"build-release": "node-gyp clean && node-gyp rebuild --release --force_build=1",
"build-debug": "node-gyp clean && node-gyp rebuild --debug --force_build=1",
"test": "mocha --exit --slow=75 --timeout=5000",
"benchmark": "node benchmark",
"download": "bash ./deps/download.sh",
"clean": "rm -rf node_modules build prebuilds",
"prebuild": "prebuildify --napi --strip --tag-libc"
},
"license": "MIT",
"keywords": [
"sql",
"sqlite",
"sqlite3",
"transactions",
"user-defined functions",
"aggregate functions",
"window functions",
"database"
]
}