-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "node-sqlite-kv",
"description": "Key-value store with node:sqlite",
"version": "1.1.0",
"license": "UNLICENSED",
"repository": {
"url": "https://github.com/andrewdku/node-sqlite-kv"
},
"author": {
"name": "andrewdku",
"url": "https://github.com/andrewdku"
},
"main": "./dist/index.cjs",
"exports": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"type": "module",
"engineStrict": true,
"engines": {
"node": ">=22"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"packageManager": "pnpm@10.32.1",
"scripts": {
"build": "tsdown -c tsdown.config.mjs",
"format": "prettier --write . --config .prettierrc.json",
"lint": "tsc --noEmit; prettier ./src --check --ignore-path=.prettierignore",
"prepublish": "tsdown -c tsdown.config.mjs"
},
"devDependencies": {
"@types/node": "^25.5.0",
"prettier": "^3.8.1",
"tsdown": "^0.21.4",
"typescript": "^5.9.3"
}
}