-
Notifications
You must be signed in to change notification settings - Fork 763
/
package.json
75 lines (75 loc) · 1.87 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
{
"name": "dailyhot-api",
"version": "2.0.7",
"description": "An Api on Today's Hot list",
"keywords": [
"API",
"RSS"
],
"homepage": "https://github.com/imsyy/DailyHotApi#readme",
"bugs": {
"url": "https://github.com/imsyy/DailyHotApi/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imsyy/DailyHotApi.git"
},
"license": "MIT",
"author": "imsyy",
"main": "dist/index.js",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"files": [
"LICENSE",
"README.md",
"dist/**/*",
"!dist/logs/**/*"
],
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"dev": "cross-env NODE_ENV=development tsx watch --no-cache src/index.ts",
"dev:cache": "cross-env NODE_ENV=development tsx watch src/index.ts",
"build": "tsc --project tsconfig.json",
"start": "cross-env NODE_ENV=development tsx dist/index.js"
},
"type": "module",
"dependencies": {
"@hono/node-server": "^1.13.7",
"axios": "^1.7.8",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.6",
"feed": "^4.2.2",
"flatted": "^3.3.2",
"hono": "^4.6.12",
"iconv-lite": "^0.6.3",
"ioredis": "^5.4.1",
"md5": "^2.3.0",
"node-cache": "^5.1.2",
"rss-parser": "^3.13.0",
"user-agents": "^1.1.379",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/md5": "^2.3.5",
"@types/node": "^22.10.1",
"@types/user-agents": "^1.0.4",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"cross-env": "^7.0.3",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"prettier": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"engines": {
"node": ">=20"
}
}