2024-08-19 22:51:18 +08:00
|
|
|
{
|
2025-02-14 14:57:21 +08:00
|
|
|
"name": "anylink-web",
|
2025-03-18 16:30:41 +08:00
|
|
|
"version": "1.0.1",
|
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",
|
2024-09-19 23:00:24 +08:00
|
|
|
"@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",
|
2024-08-26 20:22:03 +08:00
|
|
|
"lodash": "^4.17.21",
|
2024-08-19 22:51:18 +08:00
|
|
|
"pinia": "^2.1.7",
|
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",
|
2024-11-13 17:36:54 +08:00
|
|
|
"vue-cropper": "^1.1.1",
|
2024-08-19 22:51:18 +08:00
|
|
|
"vue-router": "^4.3.3"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@rushstack/eslint-patch": "^1.8.0",
|
|
|
|
|
"@vitejs/plugin-vue": "^5.0.5",
|
|
|
|
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
|
|
|
"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"
|
|
|
|
|
]
|
2025-01-07 16:39:28 +08:00
|
|
|
},
|
|
|
|
|
"pnpm": {
|
|
|
|
|
"overrides": {
|
2025-01-07 20:55:05 +08:00
|
|
|
"quill": "^2.0.2"
|
2025-01-07 16:39:28 +08:00
|
|
|
}
|
2024-08-19 22:51:18 +08:00
|
|
|
}
|
|
|
|
|
}
|