Files
open-anylink-web/package.json

63 lines
1.7 KiB
JSON
Raw Normal View History

2024-08-19 22:51:18 +08:00
{
2025-02-14 14:57:21 +08:00
"name": "anylink-web",
2025-04-29 21:11:36 +08:00
"version": "1.4.0",
2024-08-19 22:51:18 +08:00
"private": true,
"type": "module",
"scripts": {
2025-02-17 15:53:16 +08:00
"dev": "vite --mode development",
2025-03-04 10:52:36 +08:00
"demo": "vite --mode demo-dev",
2025-03-08 20:09:49 +08:00
"build": "vite build --mode production",
2025-03-04 10:52:36 +08:00
"build:demo": "vite build --mode demo-prod",
2024-08-19 22:51:18 +08:00
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"prepare": "husky install",
2024-09-12 21:35:37 +08:00
"lint-staged": "lint-staged",
"proto": "npx pbjs -t static-module --es6 -w es6 -o src/proto/msg.js src/proto/msg.proto"
2024-08-19 22:51:18 +08:00
},
"dependencies": {
2024-08-21 10:37:56 +08:00
"@element-plus/icons-vue": "^2.3.1",
"@vueup/vue-quill": "^1.2.0",
2024-08-20 17:02:51 +08:00
"axios": "^1.7.4",
2024-08-22 22:38:04 +08:00
"crypto-js": "^4.2.0",
2024-08-20 17:02:51 +08:00
"element-plus": "^2.8.0",
"lodash": "^4.17.21",
2024-08-19 22:51:18 +08:00
"pinia": "^2.1.7",
2025-04-25 21:12:09 +08:00
"pinyin-pro": "^3.26.0",
2024-09-12 21:35:37 +08:00
"protobufjs": "^7.4.0",
2024-08-22 22:38:04 +08:00
"uuid": "^10.0.0",
2024-08-19 22:51:18 +08:00
"vue": "^3.4.29",
2025-03-23 12:30:30 +08:00
"vue-audio-visual": "^3.0.10",
2024-11-13 17:36:54 +08:00
"vue-cropper": "^1.1.1",
2025-03-26 12:14:15 +08:00
"vue-router": "^4.3.3",
"xgplayer": "^3.0.21"
2024-08-19 22:51:18 +08:00
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
"@vitejs/plugin-vue": "^5.0.5",
2025-05-12 21:12:12 +08:00
"@vitejs/plugin-vue-jsx": "^4.1.2",
2024-08-19 22:51:18 +08:00
"@vue/eslint-config-prettier": "^9.0.0",
2025-05-12 21:12:12 +08:00
"@vue/runtime-dom": "^3.5.13",
2024-08-19 22:51:18 +08:00
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.9",
2024-08-20 17:02:51 +08:00
"pinia-plugin-persistedstate": "^3.2.1",
2024-08-19 22:51:18 +08:00
"prettier": "^3.2.5",
2024-09-12 21:35:37 +08:00
"protobufjs-cli": "^1.1.3",
2025-01-08 10:25:12 +08:00
"sass": "^1.83.1",
2024-10-23 15:33:58 +08:00
"vite": "^5.3.1",
"vite-svg-loader": "^5.1.0"
2024-08-19 22:51:18 +08:00
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix"
]
},
"pnpm": {
"overrides": {
2025-01-07 20:55:05 +08:00
"quill": "^2.0.2"
}
2024-08-19 22:51:18 +08:00
}
}