-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1009 Bytes
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
{
"name": "simple-db",
"version": "1.0.0",
"description": "Its a simple document based database project created on top of rocksdb",
"main": "dist/index.js",
"bin": {
"simplesh": "./dist/bin/simplesh.js"
},
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"test": "node --experimental-strip-types src/index.ts",
"lint": "eslint . --ext .ts"
},
"keywords": [
"database",
"db",
"document",
"rocksdb",
"leveldb"
],
"author": "nasim",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@types/leveldown": "^4.0.6",
"@types/levelup": "^5.1.5",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"uuid": "^11.0.3"
}
}