-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.22 KB
/
package.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "rsshub-never-die",
"version": "1.1.0",
"description": "一个基于 hono 的 RSSHub 代理服务,支持自动负载均衡、自动容错和反向代理 RSSHub 实例,支持 Node.js/Docker/Vercel/Cloudflare Workers 等方式部署。",
"author": "CaoMeiYouRen",
"private": true,
"license": "MIT",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "cross-env NODE_ENV=production eslint src --fix --ext .ts,.js,.cjs,.mjs",
"release": "semantic-release",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production tsup",
"dev": "cross-env NODE_ENV=development tsx watch src/index.ts",
"dev:tsup": "cross-env NODE_ENV=development tsup --watch",
"start": "node ./dist/index.mjs",
"start:tsx": "cross-env NODE_ENV=production tsx src/index.ts",
"commit": "cz",
"prepare": "husky install",
"dev:vercel": "vercel dev",
"deploy:vercel": "vercel",
"dev:wrangler": "wrangler dev --env dev",
"deploy:wrangler": "wrangler deploy"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241022.0",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/nft": "^0.27.6",
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-cmyr-config": "^2.1.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-conventional-changelog-cmyr": "^1.1.1",
"debug": "^4.3.7",
"eslint": "^8.57.1",
"eslint-config-cmyr": "^1.1.32",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"semantic-release": "21.0.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vercel": "^37.14.0",
"wrangler": "^3.85.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog-cmyr"
}
},
"changelog": {
"language": "zh"
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint",
"git add"
]
},
"keywords": [
"RSSHub",
"Proxy",
"LoadBalancer",
"Vercel",
"Cloudflare Workers",
"Docker"
],
"homepage": "https://github.com/CaoMeiYouRen/rsshub-never-die#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CaoMeiYouRen/rsshub-never-die.git"
},
"bugs": {
"url": "https://github.com/CaoMeiYouRen/rsshub-never-die/issues"
},
"dependencies": {
"@hono/node-server": "^1.13.4",
"dotenv": "^16.4.5",
"hono": "^4.6.9",
"tslib": "^2.8.0",
"winston": "^3.16.0",
"winston-daily-rotate-file": "^5.0.0"
},
"pnpm": {
"overrides": {
"compare-func": "^2.0.0"
}
},
"type": "module"
}