forked from imsyy/DailyHotApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "dailyhot_api",
"version": "2.0.0",
"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/DIYgod/RSSHub.git"
},
"license": "MIT",
"author": "imsyy",
"main": "src/index.ts",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix",
"dev": "tsx watch --no-cache src/index.ts",
"dev:cache": "tsx watch src/index.ts",
"build": "tsc --project tsconfig.json",
"start": "tsx src/index.ts"
},
"type": "module",
"dependencies": {
"@hono/node-server": "^1.9.1",
"axios": "^1.6.8",
"cheerio": "1.0.0-rc.12",
"dotenv": "^16.4.5",
"feed": "^4.2.2",
"hono": "^4.2.2",
"md5": "^2.3.0",
"node-cache": "^5.1.2",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"tsx": "^3.14.0",
"typescript": "^5.4.4"
},
"engines": {
"node": ">=20"
}
}