-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "dailyhot-api",
"version": "0.1.0",
"description": "An API on Hono to get daily hot news",
"keywords": [
"API"
],
"homepage": "https://github.com/daylight2022/DailyHotApi",
"bugs": {
"url": "https://github.com/daylight2022/DailyHotApi/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daylight2022/DailyHotApi.git"
},
"license": "MIT",
"author": "Kody",
"scripts": {
"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"
},
"dependencies": {
"@hono/node-server": "^1.12.0",
"axios": "^1.7.2",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"dayjs": "^1.11.12",
"dotenv": "^16.4.5",
"hono": "^4.5.0",
"md5": "^2.3.0",
"node-cache": "^5.1.2",
"winston": "^3.13.1"
},
"devDependencies": {
"@types/md5": "^2.3.5",
"@types/node": "^20.11.17",
"cross-env": "^7.0.3",
"tsx": "^4.7.1"
}
}