-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.15 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.15 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
{
"name": "@decafcode/sqlite",
"version": "2.5.0",
"description": "Synchronous N-API interface to SQLite",
"main": "src/index.js",
"repository": "https://github.com/decafcode/nsql",
"author": "Decaf Code <git@decafcode.org>",
"license": "MIT",
"scripts": {
"chkfmt": "npm run chkfmt:c && npm run chkfmt:js",
"chkfmt:c": "clang-format --dry-run -Werror native/nsql/*.c native/nsql/*.h",
"chkfmt:js": "prettier -c ./src/**",
"clangd": "node-gyp configure -- -f compile_commands_json",
"docs": "typedoc --out docs/ --readme none src/index.d.ts",
"install": "node-gyp-build",
"make": "make -C build/",
"prebuild": "prebuildify --napi --strip",
"release": "release-it",
"test": "jest -i"
},
"dependencies": {
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^7.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"clang-format": "^1.8.0",
"jest": "^30.0.5",
"node-gyp": "^11.3.0",
"prebuildify": "^6.0.1",
"prettier": "^1.19.1",
"release-it": "^19.0.4",
"ts-jest": "^29.4.1",
"typedoc": "^0.28.10",
"typescript": "^5.9.2"
}
}