-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.49 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.49 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
{
"name": "r2-web",
"private": true,
"version": "1.12.0",
"type": "module",
"packageManager": "pnpm@10.30.3",
"author": "Viki <hi@viki.moe> (https://github.com/vikiboss)",
"license": "MIT",
"scripts": {
"dev": "npx serve ./src -p 5500",
"format": "prettier --write ./src/**/*.{ts,tsx,js,jsx,json,css,md,html} --no-error-on-unmatched-pattern",
"typecheck": "tsc --noEmit --project jsconfig.json",
"release": "bumpp"
},
"prettier": {
"semi": false,
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all"
},
"changelogithub": {
"types": {
"feat": {
"title": "🚀 新功能"
},
"fix": {
"title": "🐞 问题修复"
},
"perf": {
"title": "🏎 性能优化"
},
"chore": {
"title": "🧹 杂项"
},
"style": {
"title": "🎨 样式"
},
"refactor": {
"title": "🔨 重构"
},
"docs": {
"title": "📚 文档"
},
"ci": {
"title": "⚙️ CI/CD"
}
}
},
"dependencies": {
"@jsquash/avif": "^2.1.1",
"@jsquash/jpeg": "^1.6.0",
"@jsquash/oxipng": "^2.3.0",
"@jsquash/webp": "^1.5.0",
"aws4fetch": "^1.0.20",
"dayjs": "^1.11.19",
"filesize": "^11.0.13",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@types/node": "^25.3.5",
"bumpp": "^10.4.1",
"changelogithub": "^14.0.0",
"prettier": "^3.8.1",
"serve": "^14.2.6",
"typescript": "^5.9.3"
}
}