-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.31 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
{
"name": "opendlink",
"version": "2.1.1",
"description": "OpenDLink — 云盘公开分享稳定链接工具",
"main": "dist/server.js",
"scripts": {
"build:runtime": "node scripts/build-runtime.js",
"build:worker": "node scripts/build-worker.js",
"validate:worker": "node scripts/validate-worker.js",
"typecheck": "tsc --noEmit",
"verify": "npm run typecheck && npm run build:runtime && npm run build:worker && npm run validate:worker && node scripts/verify-runtime-clean.js && node --check scripts/build-runtime.js && node --check scripts/build-worker.js && node --check scripts/start-server.js && node --check scripts/validate-worker.js && node --check dist/shared/opendlink-core.js && node --check dist/server.js && node --check dist/cloudflare-worker/worker.template.js",
"start": "node scripts/start-server.js",
"dev": "node --watch --watch-path=src/server.ts --watch-path=src/shared --watch-path=public/index.html --watch-path=scripts/build-runtime.js --watch-path=scripts/start-server.js scripts/start-server.js",
"sync": "npm run build:worker"
},
"dependencies": {
"express": "^4.19.2"
},
"devDependencies": {
"@types/express": "^4.17.25",
"@types/node": "^18.19.130",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT"
}