-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.67 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.67 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "1panel-frontend",
"private": true,
"version": "2.0",
"description": "1Panel 前端",
"scripts": {
"dev": "node --max-old-space-size=8192 ./node_modules/.bin/vite --host",
"serve": "vite",
"build:dev": "vite build --mode development",
"type-check": "node --max-old-space-size=8192 ./node_modules/vue-tsc/bin/vue-tsc.js --noEmit",
"build:test": "npm run type-check && vite build --mode test",
"build:pro": "vite build --mode production",
"preview": "vite preview",
"lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
"lint:lint-staged": "lint-staged",
"release": "standard-version",
"prettier:comment": "自动格式化当前目录下的所有文件",
"prettier": "prettier --write ."
},
"dependencies": {
"@codemirror/lang-html": "^6.4.10",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/language": "^6.12.3",
"@codemirror/legacy-modes": "^6.5.3",
"@codemirror/theme-one-dark": "^6.1.3",
"@element-plus/icons-vue": "^1.1.4",
"@novnc/novnc": "^1.7.0",
"@vue-office/docx": "^1.6.2",
"@vue-office/excel": "^1.7.8",
"@vueuse/core": "^14.4.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"anser": "^2.3.5",
"axios": "^1.18.0",
"codemirror": "^6.0.2",
"crypto-js": "^4.2.0",
"dompurify": "^3.4.13",
"echarts": "^6.1.0",
"element-plus": "2.14.3",
"js-base64": "^3.9.1",
"jsencrypt": "^3.3.2",
"lodash-es": "^4.18.1",
"md-editor-v3": "^6.5.5",
"monaco-editor": "^0.56.0",
"nprogress": "^0.2.0",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"punycode": "^2.3.1",
"qs": "^6.15.3",
"screenfull": "^6.0.2",
"sortablejs": "^1.15.7",
"uuid": "^14.0.1",
"vue": "^3.5.40",
"vue-clipboard3": "^2.0.0",
"vue-codemirror": "^6.1.1",
"vue-demi": "^0.14.6",
"vue-i18n": "^11.4.4",
"vue-router": "^5.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^26.1.2",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitejs/plugin-vue": "^6.0.7",
"@vitejs/plugin-vue-jsx": "^5.1.6",
"@vue/compiler-sfc": "^3.5.35",
"autoprefixer": "^10.5.4",
"esbuild": "^0.28.1",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-vue": "^10.10.0",
"lint-staged": "^17.0.7",
"postcss": "^8.5.14",
"postcss-html": "^2.0.0",
"prettier": "^3.9.6",
"rollup-plugin-visualizer": "^7.0.1",
"sass": "^1.102.0",
"standard-version": "^9.5.0",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.2.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint2": "^5.3.0",
"vite-svg-loader": "^5.1.1",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^3.3.9"
},
"trustedDependencies": [
"@parcel/watcher",
"esbuild",
"@vue-office/docx",
"@vue-office/excel"
],
"overrides": {
"monaco-editor": {
"dompurify": "3.4.13"
}
}
}