-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 931 Bytes
/
package.json
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
{
"name": "dirty-ts",
"description": "A tiny & fast key value store with append-only disk log. Ideal for apps with < 1 million records. Now with type declarations",
"version": "1.1.8",
"repository": "https://github.com/ether/dirty_db.git",
"license": "MIT",
"dependencies": {
"3": "^2.1.0"
},
"main": "./dist/lib/dirty",
"devDependencies": {
"@types/node": "^20.8.6",
"bun-types": "^1.0.6",
"eslint": "^7.32.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"rimraf": "^3.0.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=12.13.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "tsc"
},
"files": [
"./dist"
]
}