-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 KB
/
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
{
"name": "quipodb",
"version": "1.0.0",
"type": "module",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc index.ts -t esnext -m esnext -d --allowSyntheticDefaultImports --moduleResolution node --outDir ./dist",
"publish-beta-public": "npm publish --tag beta --registry=https://registry.npmjs.com",
"publish-beta-private": "npm publish --tag beta",
"publish-public": "npm publish --registry=https://registry.npmjs.com",
"publish-private": "npm publish"
},
"author": {
"name": "Rajaneesh.R",
"email": "rajaneeshr2006@gmail.com"
},
"keywords": [
"quipodb",
"db",
"database",
"sqlite",
"ttl",
"key",
"value",
"store"
],
"dependencies": {
"better-sqlite3": "^7.6.2",
"fs-extra": "^10.1.0",
"is-what": "^4.1.7",
"lodash": "^4.17.21",
"merge-anything": "^5.0.4"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.182",
"@types/node": "^18.6.1",
"typescript": "^4.8.3"
}
}