-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
52
53
54
55
56
57
{
"name": "@outerbase/starbasedb",
"version": "0.1.4",
"files": [
"src",
"dist",
"plugins"
],
"type": "module",
"main": "dist/index.ts",
"types": "dist/index.ts",
"exports": {
".": {
"types": "./dist/index.ts",
"import": "./dist/index.ts"
},
"./plugins": {
"types": "./dist/plugins.ts",
"import": "./dist/plugins.ts"
}
},
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"publish-npm-module": "npm publish --access public",
"cf-typegen": "wrangler types",
"delete": "wrangler delete",
"prepare": "husky",
"test": "vitest"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241216.0",
"@types/pg": "^8.11.10",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "3.4.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"wrangler": "^3.96.0"
},
"dependencies": {
"@libsql/client": "^0.14.0",
"@outerbase/sdk": "2.0.0-rc.3",
"hono": "^4.6.14",
"jose": "^5.9.6",
"mongodb": "^6.11.0",
"mysql2": "^3.11.4",
"node-sql-parser": "^4.18.0",
"pg": "^8.13.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
}
}