-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 981 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
36
37
38
39
40
41
42
43
44
45
{
"name": "chinookdb",
"version": "1.0.3",
"description": "A simple local database API for rapid embedded development experience.",
"main": "./src/database.ts",
"scripts": {
"test": "NODE_ENV=test bun test",
"test:w": "NODE_ENV=test bun test --watch",
"build": "bun build ./src/database.ts --outdir ./dist/chinook.js"
},
"bin": {
"chinook": "./dist/chinook.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wayjake/chinook.git"
},
"directories": {
"src": "./src"
},
"keywords": [
"db",
"database",
"key",
"store",
"grep",
"setter",
"set"
],
"author": "ekaj greb",
"license": "MIT",
"bugs": {
"url": "https://github.com/wayjake/chinook/issues"
},
"homepage": "https://github.com/wayjake/chinook#readme",
"devDependencies": {
"bun-types": "^0.5.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"lodash": "^4.17.21"
}
}