-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.32 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.32 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
{
"name": "@appthreat/sqlite3",
"description": "Asynchronous, non-blocking SQLite3 bindings. Modern rewrite of TryGhost/node-sqlite3",
"version": "8.0.1",
"homepage": "https://github.com/AppThreat/node-sqlite3",
"author": "Team AppThreat <cloud@appthreat.com>",
"binary": {
"napi_versions": [9, 10]
},
"files": [
"binding.gyp",
"deps/",
"lib/*.js",
"lib/*.d.ts",
"src/",
"prebuilds/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AppThreat/node-sqlite3.git"
},
"dependencies": {
"node-addon-api": "^8.6.0",
"node-gyp-build": "^4.8.0"
},
"devDependencies": {
"eslint": "9.39.2",
"mocha": "11.7.5",
"prebuildify": "^6.0.1"
},
"peerDependencies": {
"node-gyp": "12.x"
},
"peerDependenciesMeta": {
"node-gyp": {
"optional": true
}
},
"optionalDependencies": {
"node-gyp": "12.x"
},
"engines": {
"node": ">=20"
},
"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --strip",
"rebuild": "node-gyp rebuild",
"test": "node test/support/createdb.js && mocha -R spec --timeout 480000"
},
"license": "BSD-3-Clause",
"keywords": [
"sql",
"sqlite",
"sqlite3",
"database"
],
"type": "module",
"main": "./lib/sqlite3.js",
"types": "./lib/sqlite3.d.ts"
}