-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.91 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
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
70
71
{
"name": "tinytab",
"version": "1.1.1",
"description": "A browser extension to replace the original tab.",
"author": "guangzan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://gitee.com/guangzan/tinytab.git"
},
"keywords": [],
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build && cp manifest.json dist",
"preview": "vite preview --port 8080",
"up": "taze major -I",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@arco-design/color": "^0.4.0",
"@arco-design/web-vue": "^2.53.2",
"@intlify/unplugin-vue-i18n": "^1.5.0",
"@vicons/ionicons5": "^0.12.0",
"@vueuse/core": "^10.6.1",
"file-saver": "^2.0.5",
"lodash-es": "^4.17.21",
"naive-ui": "^2.35.0",
"nanoid": "^5.0.3",
"pinia": "^2.1.7",
"promise-file-reader": "^1.0.3",
"vfonts": "^0.0.3",
"vue": "^3.3.8",
"vue-i18n": "9.7.0",
"vue-router": "^4.2.5",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@tsconfig/node18": "^18.2.2",
"@types/file-saver": "^2.0.7",
"@types/lodash-es": "^4.17.11",
"@types/node": "^20.9.1",
"@types/nprogress": "^0.2.3",
"@vicons/antd": "^0.12.0",
"@vitejs/plugin-vue": "^4.5.0",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/compiler-sfc": "^3.3.8",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.54.0",
"lint-staged": "^13.3.0",
"sass": "^1.69.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"unocss": "^0.52.7",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.5.0",
"vite-plugin-pages": "^0.31.0",
"vite-plugin-style-import": "^2.0.0",
"vite-plugin-vue-layouts": "^0.8.0",
"vite-plugin-windicss": "^1.9.1",
"vue-tsc": "^1.8.22"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}