-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "node-sqlite-map",
"version": "0.0.1",
"description": "A persistent, Map-compatible key-value store for Node.js backed by node:sqlite",
"author": "xcfio",
"homepage": "https://github.com/xcfio/node-sqlite-map#readme",
"type": "commonjs",
"license": "MIT",
"main": "./out/index.js",
"scripts": {
"lint": "prettier --config=.prettierrc --check src",
"fmt": "prettier --config=.prettierrc --write src",
"test": "(tsc --noEmit) && (tsx src/index.test.ts)",
"dev": "tsc --watch",
"build": "tsc"
},
"keywords": [
"map",
"cache",
"sqlite",
"storage",
"node-sqlite"
],
"repository": {
"type": "git",
"url": "https://github.com/xcfio/node-sqlite-map"
},
"bugs": {
"url": "https://github.com/xcfio/node-sqlite-map/issues",
"email": "omarfaruksxp@gmail.com"
},
"packageManager": "pnpm@10.33.0",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"engines": {
"node": ">=22.5"
},
"devDependencies": {
"@types/node": "^25.5.2"
}
}