-
Notifications
You must be signed in to change notification settings - Fork 344
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 795 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 795 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": "cf-SubCloud",
"version": "1.4.33",
"description": "Cloudflare Worker for Mihomo subscription service",
"private": true,
"license": "MIT",
"scripts": {
"deploy:workers": "wrangler deploy",
"deploy": "vercel --prod",
"build": "node esbuild.js",
"dev": "concurrently \"pnpm dev:esbuild\" \"pnpm dev:run\"",
"dev:esbuild": "nodemon -w src -w package.json --exec node dev-esbuild.js",
"dev:run": "wait-on dist/min.js && nodemon -w dist/min.js --exec node dist/min.js",
"lint": "prettier --write ."
},
"devDependencies": {
"concurrently": "^10.0.3",
"esbuild": "^0.25.8",
"nodemon": "^3.1.14",
"prettier": "^3.6.2",
"vercel": "^50.37.3",
"wait-on": "^9.0.10",
"wrangler": "^4.107.1"
},
"dependencies": {
"core-js": "^3.49.0",
"yaml": "^2.8.0"
}
}