-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.71 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.71 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
{
"name": "strato-db",
"version": "3.11.1",
"description": "NoSQL-hybrid with Event Sourcing based on sqlite",
"license": "MIT",
"repository": "https://github.com/StratoKit/strato-db",
"author": {
"name": "Wout Mertens",
"email": "Wout.Mertens@gmail.com"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./types.d.ts",
"files": [
"dist",
"types.d.ts",
"Readme.md"
],
"engines": {
"node": ">=16.4"
},
"scripts": {
"start": "nps",
"test": "npx nps test",
"prepublishOnly": "nps test.full",
"prepack": "nps build"
},
"keywords": [
"sqlite",
"nosql",
"event sourcing",
"esdb",
"jsonmodel",
"json",
"database",
"db"
],
"dependencies": {
"async-sema": "^3",
"dataloader": "^2",
"debug": "^4",
"jsurl2": "^2.2.0",
"lodash": "^4",
"prop-types": "^15",
"sqlite3": "^5",
"uuid": ">=8 <10"
},
"devDependencies": {
"@types/lodash": "^4.17.23",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitest/coverage-v8": "3.0.5",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-jsdoc": "^48.7.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-vitest-globals": "^1.5.0",
"fs-extra": "^11.3.0",
"nps": "^5.10.0",
"nps-utils": "^1.7.0",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.2",
"tmp-promise": "3.0.3",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "3.0.5"
},
"packageManager": "pnpm@10.2.1"
}