-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.39 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@alcalzone/jsonl-db",
"version": "4.0.2",
"description": "Simple JSONL-based key-value store",
"type": "module",
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
},
"./package.json": "./package.json"
},
"files": [
"build/**/*.{js,d.ts,map}",
"build/**/package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AlCalzone/jsonl-db.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"keywords": [
"jsonl",
"ndjson",
"value",
"store"
],
"author": {
"name": "AlCalzone",
"email": "d.griesel@gmx.net"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AlCalzone/jsonl-db/issues"
},
"homepage": "https://github.com/AlCalzone/jsonl-db#readme",
"devDependencies": {
"@alcalzone/esm2cjs": "^1.4.1",
"@alcalzone/release-script": "~3.8.0",
"@alcalzone/release-script-plugin-license": "~3.7.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@tsconfig/node20": "^20.1.6",
"@types/node": "^22.18.8",
"@types/proper-lockfile": "^4.1.2",
"@vitest/coverage-istanbul": "^3.2.4",
"commitizen": "^4.3.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
"vite": "^7.1.9",
"vitest": "^3.2.4"
},
"dependencies": {
"@alcalzone/proper-lockfile": "^4.1.3-0",
"alcalzone-shared": "^5.0.0"
},
"overrides": {
"minimist@1.2.5": "^1.2.6"
},
"scripts": {
"build": "tsc",
"postbuild": "esm2cjs --in ./build/esm --out ./build/cjs -l error -t node20",
"watch": "npm run build -- --watch",
"test:ts": "vitest",
"test:watch": "npm run test:ts -- --watch",
"test": "npm run test:watch",
"coverage": "vitest run --coverage",
"show-coverage": "npm run coverage && start ./coverage/index.html",
"lint:ts": "eslint src",
"lint": "npm run lint:ts",
"commit": "git-cz",
"release": "release-script",
"prepare": "husky",
"perf": "ts-node --transpile-only test/perf.ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}