forked from Souma-Sumire/ff14-overlay-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.92 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "vite-project",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"tsc": "vue-tsc --noEmit",
"github-build": "vite build",
"build": "npm run cjs && vite build",
"preview": "vite preview",
"submodule": "git submodule update --remote",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"cjs": "node scripts/generate-aethercurrent.cjs && node scripts/generate-aetheryte.cjs && node scripts/generate-map.cjs && node scripts/generate-action.cjs && node scripts/generate-status.cjs && node scripts/generate-contentFinderCondition.cjs",
"generate-status-compare": "node scripts/generate-contentFinderCondition.cjs"
},
"dependencies": {
"@babel/core": "^7.25.2",
"@element-plus/icons-vue": "^2.3.1",
"@johnsoncodehk/html2pug": "^1.0.0",
"@jridgewell/sourcemap-codec": "^1.5.0",
"@sweetalert2/theme-bootstrap-4": "^5.0.18",
"@volar/pug-language-service": "^1.0.24",
"@volar/typescript-language-service": "^1.0.1",
"@vue/compiler-sfc": "^3.4.38",
"@vue/language-service": "^2.0.29",
"@vueuse/core": "^9.13.0",
"@vueuse/head": "^1.3.1",
"animate.css": "^4.1.1",
"axios": "^1.7.4",
"clipboard": "^2.0.11",
"element-plus": "^2.8.0",
"github-markdown-css": "^5.6.1",
"hover.css": "^2.3.2",
"install": "^0.13.0",
"lz-string": "^1.5.0",
"moment": "^2.30.1",
"obs-websocket-js": "^5.0.6",
"pinia": "^2.2.2",
"sweetalert2": "^11.12.4",
"vue": "^3.4.38",
"vue-draggable-plus": "0.2.0-beta.2",
"vue-i18n": "10",
"vue-lazyload": "^3.0.0",
"vue-router": "^4.4.3",
"vue-tsc": "^1.8.27",
"vuedraggable": "^4.1.0",
"vxe-pc-ui": "^4.0.96",
"vxe-table": "^4.7.65",
"xe-utils": "^3.5.30"
},
"devDependencies": {
"@antfu/eslint-config": "^2.25.2",
"@types/node": "^20.14.15",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@unocss/eslint-plugin": "^0.60.4",
"@vitejs/plugin-vue": "^4.6.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"cz-conventional-changelog-zh": "^0.0.2",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"fs-extra": "^11.2.0",
"iconv-lite": "^0.6.3",
"lint-staged": "^15.2.9",
"opencc-js": "^1.0.5",
"sass": "^1.77.8",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4",
"unocss": "^0.58.9",
"unplugin-auto-import": "^0.12.2",
"unplugin-vue-components": "^0.22.12",
"vite": "^4.5.3",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-md": "^0.21.5",
"vite-plugin-pages": "^0.28.0",
"vite-plugin-sass-dts": "^1.3.25",
"vite-plugin-style-import": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-zh"
}
}
}