-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "@axfab/pocket-db",
"version": "0.1.0",
"description": "An embedded document database for Node.js, designed around a small file-backed storage engine.",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist/src",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && node --test \"dist/tests/**/*.test.js\"",
"bench": "npm run build && node dist/benchmarks/bench.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"database",
"embedded",
"nosql",
"typescript"
],
"license": "MIT",
"homepage": "https://pocket-db.axfab.net/",
"repository": {
"type": "git",
"url": "https://github.com/AxFab/pocket-db.git"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/lokijs": "^1.5.14",
"@types/node": "^20.12.0",
"better-sqlite3": "^12.10.0",
"lokijs": "^1.5.12",
"lowdb": "^7.0.1",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18"
}
}