-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.8 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
62
63
64
65
{
"name": "@axfab/pocket-db",
"version": "0.1.3",
"description": "An embedded document database for Node.js, designed around a small file-backed storage engine.",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist/",
"docs/",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"benchmarks/RESULTS.md"
],
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist', {recursive:true,force:true})\"",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"test": "node --import tsx --test 'tests/*.test.ts'",
"test:coverage": "node --import tsx --test --experimental-test-coverage --test-coverage-exclude='tests/**' 'tests/*.test.ts'",
"bench": "npm run bench --workspace benchmarks",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "npm run lint && npm run test && npm run build && npm pack --dry-run"
},
"workspaces": [
"benchmarks"
],
"keywords": [
"database",
"embedded",
"nosql",
"typescript",
"document-store",
"append-only"
],
"license": "MIT",
"homepage": "https://pocket-db.axfab.net/",
"repository": {
"type": "git",
"url": "https://github.com/AxFab/pocket-db.git"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^20.12.0",
"eslint": "^9.39.4",
"globals": "^15.15.0",
"tsx": "^4.21.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.61.1"
},
"engines": {
"node": ">=18"
}
}