-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.75 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mcp-subregistry",
"version": "0.1.0",
"description": "Open-source, self-hostable MCP Registry API built on Cloudflare Workers",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "pnpm db:migrate:prod && wrangler deploy",
"cf-typegen": "wrangler types",
"drizzle-kit": "drizzle-kit",
"db:generate": "drizzle-kit generate",
"db:migrate:dev": "wrangler d1 migrations apply REGISTRY_DB",
"db:migrate:prod": "wrangler d1 migrations apply REGISTRY_DB --remote",
"db:studio": "drizzle-kit studio",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hono/standard-validator": "^0.1.5",
"@scalar/hono-api-reference": "^0.9.20",
"drizzle-orm": "^0.44.6",
"hono": "^4.9.9",
"hono-openapi": "^1.1.0",
"jose": "^6.1.0",
"zod": "^4.1.11"
},
"devDependencies": {
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.5",
"typescript": "^5.9.3",
"wrangler": "^4.42.0"
},
"cloudflare": {
"bindings": {
"REGISTRY_ADMIN_SECRET": {
"description": "Generate a random string using `openssl rand -hex 32` for admin requests."
},
"REGISTRY_DB": {
"description": "The name for your D1 database that supports the registry"
},
"CLOUDFLARE_ACCOUNT_ID": {
"description": "Your Cloudflare Account ID. Only used for connecting to your D1 with drizzle-kit studio."
},
"CLOUDFLARE_DATABASE_ID": {
"description": "Your remote Cloudflare D1 database ID. Only used for connecting to your D1 with drizzle-kit studio."
},
"CLOUDFLARE_D1_TOKEN": {
"description": "Your Cloudflare access token with D1 edit permissions. Only used for connecting to your D1 with drizzle-kit studio."
}
}
}
}