-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 745 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 745 Bytes
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
{
"name": "checkdeploymanager",
"version": "0.6.4",
"private": true,
"description": "Multi tenant configuration service for the Check by CyberDrain browser extension, hosted on Cloudflare Workers",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler d1 migrations apply DB --remote && wrangler deploy",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"migrate:local": "wrangler d1 migrations apply DB --local",
"docs:wiki": "node scripts/sync-wiki.mjs"
},
"dependencies": {
"hono": "^4.12.27"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.18.0",
"typescript": "^6.0.3",
"vitest": "^4.1.9",
"wrangler": "^4.106.0"
}
}