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
38 lines (38 loc) · 960 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 960 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
30
31
32
33
34
35
36
37
38
{
"name": "misakanet",
"version": "2.23.0",
"license": "Apache-2.0",
"description": "MisakaNet DSH plugin + deployment scripts — shared failure-memory skill and Workers deployment",
"files": [
"SKILL.md",
"skills/",
"cordis.patch.yml",
"index.js",
"index.d.ts"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web"
}
},
"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.127.0"
},
"overrides": {
"sharp": "0.35.3"
},
"main": "index.js",
"types": "index.d.ts",
"type": "module"
}