forked from Ikalus1988/MisakaNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) 路 738 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) 路 738 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
26
27
28
29
{
"name": "misakanet",
"private": true,
"license": "Apache-2.0",
"description": "Deployment scripts for MisakaNet Workers",
"files": [
"SKILL.md",
"cordis.patch.yml"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"scripts": {
"deploy:web": "cd web && npx wrangler deploy",
"deploy:api": "cd workers && npx wrangler deploy --config wrangler.api.jsonc",
"deploy:email": "cd workers/email-register && npx wrangler deploy",
"deploy:all": "npm run deploy:web && npm run deploy:api && npm run deploy:email",
"deploy": "wrangler deploy",
"preview": "wrangler dev"
},
"devDependencies": {
"wrangler": "^4.118.0"
},
"overrides": {
"sharp": "0.35.3"
}
}