-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.28 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
{
"name": "minisubconvert",
"version": "1.0.0",
"description": "Subscription Convertion From Sub-Store",
"scripts": {
"sync": "node scripts/sync.js",
"build": "node scripts/build.js",
"build:parsers": "node scripts/build.js --parsers-only",
"node:dev": "nodemon -w src -w scripts -w package.json -w jsconfig.json --ext js,json --exec \"pnpm run build && node dist/minisubconvert.js\"",
"worker:dev": "pnpm run build:parsers && wrangler dev .build/src/worker.js --config wrangler.jsonc --tsconfig .build/jsconfig.json --ip 0.0.0.0",
"worker:deploy": "pnpm run build:parsers && wrangler deploy .build/src/worker.js --config wrangler.jsonc --tsconfig .build/jsconfig.json",
"worker:secret": "wrangler secret bulk .env.local",
"lint": "eslint \"{src,scripts}/**/*.js\" --ignore-pattern \"src/core/proxy-utils/**\""
},
"author": "bestrui",
"license": "GPL-3.0",
"dependencies": {
"ip-address": "^10.1.0",
"js-base64": "^3.7.8",
"json5": "^2.2.3",
"jsrsasign": "^11.1.0",
"lodash": "^4.17.23",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.5",
"esbuild": "^0.27.3",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"jszip": "^3.10.1",
"nodemon": "^3.1.11",
"peggy": "^2.0.1",
"typescript": "^5.9.3",
"wrangler": "^4.71.0"
}
}