-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "htool",
"version": "1.0.0",
"description": "HTooL — 浏览器端实用工具箱",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:no-gradient": "node scripts/check-no-gradient.mjs",
"test:perf-budget": "node scripts/check-perf-budget.mjs",
"check": "npm run test:unit && npm run test:no-gradient && npm run build && npm run test:perf-budget && npm run test:e2e"
},
"dependencies": {
"@vercel/analytics": "^1.5.0",
"crypto-js": "^4.2.0",
"dompurify": "^3.4.13",
"jsqr": "^1.4.0",
"marked": "^9.1.6",
"qrcode": "^1.5.4",
"turndown": "^7.2.0",
"vue": "^3.5.41",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/test-utils": "^2.4.6",
"jsdom": "^26.1.0",
"vite": "^6.2.5",
"vitest": "^3.2.4"
}
}