-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
42
43
44
45
46
47
48
49
50
51
{
"name": "@quipodb/main",
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "node build.js",
"publish": "node publish.js",
"publish-beta-public": "npm publish --tag beta --registry=https://registry.npmjs.com --workspaces",
"publish-beta-private": "npm publish --tag beta --workspaces",
"publish-public": "npm publish --registry=https://registry.npmjs.com --workspaces",
"publish-private": "npm publish --workspaces"
},
"author": {
"name": "Rajaneesh R",
"email": "rajaneeshr@proton.me",
"url": "https://r-rajaneesh.vercel.app"
},
"keywords": [
"quipodb",
"db",
"database",
"sqlite",
"ttl",
"key",
"value",
"store"
],
"license": "ISC",
"dependencies": {
"axios": "^1.1.3",
"better-sqlite3": "^8.0.1",
"esdoc-standard-plugin": "^1.0.0",
"firebase": "^9.11.0",
"firebase-admin": "^11.0.1",
"fs-extra": "^10.1.0",
"is-what": "^4.1.7",
"knex": "^2.3.0",
"lodash": "^4.17.21",
"merge-anything": "^5.0.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.2",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.186",
"@types/node": "^18.11.3",
"globby": "^13.1.2",
"jest": "^29.3.1",
"typedoc": "^0.23.21",
"typescript": "^4.8.4"
}
}