-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.18 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.18 KB
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
{
"name": "tinywebdb-oneclick-monorepo",
"version": "1.0.0",
"description": "TinyWebDB with one-click deployments to multiple cloud providers",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"dev:core": "npm run dev -w @kodular/tinywebdb-core",
"deploy:cloudflare-kv": "npm run deploy -w @kodular/tinywebdb-cloudflare-kv",
"deploy:cloudflare-d1": "npm run deploy -w @kodular/tinywebdb-cloudflare-d1",
"deploy:cloudflare-r2": "npm run deploy -w @kodular/tinywebdb-cloudflare-r2",
"deploy:vercel-kv": "npm run deploy -w @kodular/tinywebdb-vercel-kv",
"deploy:vercel-postgres": "npm run deploy -w @kodular/tinywebdb-vercel-postgres",
"deploy:vercel-blob": "npm run deploy -w @kodular/tinywebdb-vercel-blob"
},
"keywords": [
"tinywebdb",
"app-inventor",
"cloudflare",
"vercel",
"serverless"
],
"author": "",
"license": "MIT",
"engines": {
"node": "22.x"
},
"devDependencies": {
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}