-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 884 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "@mcs-cli/registry",
"version": "1.0.0",
"description": "MCS Tech Pack Registry — Discover, search, and submit tech packs for Claude Code",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run build:worker && wrangler pages dev public --compatibility-date=2024-12-01 --binding PACKS=PACKS RATE_LIMIT=RATE_LIMIT",
"build:worker": "esbuild _worker.ts --bundle --outfile=public/_worker.js --format=esm --target=es2022 --platform=browser --conditions=workerd,worker,browser",
"build": "tsc",
"typecheck": "tsc --noEmit",
"deploy": "npm run build:worker && wrangler pages deploy public --project-name=mcs-registry"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"@types/js-yaml": "^4.0.9",
"typescript": "^5.7.0",
"wrangler": "^4.77.0"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}