-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.93 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.93 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
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
{
"name": "vod-hub",
"version": "0.1.0",
"keywords": [
"电影",
"视频",
"电视剧",
"综艺",
"动漫"
],
"type": "module",
"scripts": {
"dev": "tsx watch --clear-screen=false src/index.ts",
"start": "tsx src/index.ts",
"prepare": "husky",
"commit": "git-cz"
},
"dependencies": {
"@hono/node-server": "^1.19.10",
"@hono/zod-openapi": "^0.19.10",
"@keyv/redis": "^4.6.0",
"axios": "^1.13.6",
"cache-manager": "^7.2.8",
"cacheable": "^1.10.4",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.19",
"directory-import": "^3.3.2",
"dotenv": "^17.3.1",
"hono": "^4.12.4",
"ioredis": "^5.10.0",
"keyv": "^5.6.0",
"lodash": "^4.17.23",
"query-string": "^9.3.1",
"winston": "^3.19.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/eslint-plugin": "^7.27.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@ecomfe/eslint-config": "^8.0.0",
"@types/crypto-js": "^4.2.2",
"@types/lodash": "^4.17.24",
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}