work-order-monitor/package.json

72 lines
2.2 KiB
JSON
Raw Normal View History

2026-03-10 14:41:13 +08:00
{
2026-03-25 10:06:25 +08:00
"name": "work-order-monitor",
2026-03-10 14:41:13 +08:00
"private": true,
2026-03-31 17:08:30 +08:00
"version": "0.2.3",
2026-03-10 14:41:13 +08:00
"type": "module",
"packageManager": "pnpm@9.15.0",
2026-03-10 14:41:13 +08:00
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri-dev": "tauri dev",
2026-03-31 17:08:30 +08:00
"tauri-build": "node scripts/build.mjs",
"version": "node scripts/bump-version.mjs",
"version:patch": "node scripts/bump-version.mjs patch",
"version:minor": "node scripts/bump-version.mjs minor",
"version:major": "node scripts/bump-version.mjs major",
"publish": "node scripts/publish.mjs",
"deploy": "npm run tauri-build && npm run publish",
"type-check": "vue-tsc --noEmit",
2026-03-31 17:08:30 +08:00
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"commit": "git-cz",
"preinstall": "npx only-allow pnpm",
2026-03-31 17:08:30 +08:00
"prepare": "husky"
2026-03-10 14:41:13 +08:00
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-http": "^2.5.8",
2026-03-10 14:41:13 +08:00
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.3",
2026-03-25 10:06:25 +08:00
"@tauri-apps/plugin-process": "^2.3.1",
2026-03-31 17:08:30 +08:00
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/plugin-updater": "^2.10.1",
2026-03-10 14:41:13 +08:00
"ant-design-vue": "^4.2.6",
2026-03-31 17:08:30 +08:00
"dayjs": "^1.11.20",
"lodash-es": "^4.18.1",
2026-03-10 14:41:13 +08:00
"pinia": "^3.0.4",
"vue": "^3.5.32",
"vue-router": "^4.6.4"
2026-03-10 14:41:13 +08:00
},
"devDependencies": {
2026-03-31 17:08:30 +08:00
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
2026-03-25 10:06:25 +08:00
"@tauri-apps/cli": "^2.10.1",
2026-03-31 17:08:30 +08:00
"@types/lodash-es": "^4.17.12",
"@vitejs/plugin-vue": "^6.0.6",
"axios": "^1.15.0",
2026-03-31 17:08:30 +08:00
"commitizen": "^4.3.1",
"cz-git": "^1.12.0",
"dotenv": "^17.4.2",
"eslint": "^10.2.0",
2026-03-31 17:08:30 +08:00
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.5.0",
2026-03-31 17:08:30 +08:00
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"sass-embedded": "^1.99.0",
2026-04-16 09:50:30 +08:00
"tsx": "^4.21.0",
2026-03-10 14:41:13 +08:00
"typescript": "~5.9.3",
"typescript-eslint": "^8.58.2",
"vite": "^7.3.2",
2026-03-31 17:08:30 +08:00
"vue-tsc": "^3.2.6"
2026-03-10 14:41:13 +08:00
}
}