-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.45 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
{
"name": "tools",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "cross-env NODE_ENV=production vite build",
"start": "npm run dev",
"lint": "eslint . --ext .js,.ts,.vue",
"lint:fix": "eslint . --ext .js,.ts,.vue --fix"
},
"dependencies": {
"@egoist/vue-head": "^0.1.8",
"@ffmpeg/ffmpeg": "^0.9.6",
"@pierre/diffs": "^1.1.19",
"@soerenmartius/vue3-clipboard": "^0.1.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.11",
"@vitejs/plugin-vue": "^6.0.1",
"dayjs": "^1.11.13",
"exif-js": "^2.3.0",
"fuse.js": "^7.1.0",
"modern-screenshot": "^4.6.8",
"qrcode.vue": "^3.8.0",
"vue": "^3.5.18",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vue/compiler-sfc": "^3.5.18",
"@vue/eslint-config-typescript": "^14.6.0",
"autoprefixer": "^10.4.21",
"babel-eslint": "^10.1.0",
"cross-env": "^10.0.0",
"eslint": "^9.32.0",
"eslint-plugin-vue": "^10.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"vite": "^7.0.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix"
}
}