package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "private": true,
  3. "scripts": {
  4. "build": "vite build",
  5. "dev": "vite --port 3333 --open",
  6. "lint": "eslint .",
  7. "typecheck": "vue-tsc --noEmit",
  8. "preview": "vite preview",
  9. "test": "vitest",
  10. "up": "taze major -I",
  11. "postinstall": "npx simple-git-hooks",
  12. "build:bot": "vite build --target lib bot ./bot.ts"
  13. },
  14. "dependencies": {
  15. "@element-plus/icons-vue": "^2.3.1",
  16. "@vueuse/core": "^9.13.0",
  17. "axios": "^0.27.2",
  18. "crypto-js": "^4.2.0",
  19. "element-plus": "^2.3.3",
  20. "file-saver": "^2.0.5",
  21. "js-base64": "^3.7.6",
  22. "lottie-web": "^5.12.2",
  23. "marked": "^11.1.1",
  24. "pinia": "^2.0.35",
  25. "pinia-plugin-persist": "^1.0.0",
  26. "pptxgenjs": "^3.12.0",
  27. "qrcode.vue": "^3.4.1",
  28. "sass": "1.56.2",
  29. "vue": "^3.2.47",
  30. "vue-router": "^4.1.6"
  31. },
  32. "devDependencies": {
  33. "@antfu/eslint-config": "^0.38.4",
  34. "@iconify-json/carbon": "^1.1.16",
  35. "@types/crypto-js": "^4.2.2",
  36. "@types/node": "^18.15.11",
  37. "@unocss/eslint-config": "^0.51.4",
  38. "@unocss/preset-attributify": "^0.51.4",
  39. "@unocss/preset-icons": "^0.51.4",
  40. "@unocss/preset-uno": "^0.51.4",
  41. "@unocss/reset": "^0.51.4",
  42. "@vitejs/plugin-vue": "^4.1.0",
  43. "@vue-macros/volar": "^0.9.5",
  44. "@vue/test-utils": "^2.3.2",
  45. "eslint": "^8.38.0",
  46. "hooks": "^0.3.2",
  47. "husky": "^8.0.3",
  48. "jsdom": "^21.1.1",
  49. "lint-staged": "^13.2.1",
  50. "pnpm": "^8.2.0",
  51. "simple-git-hooks": "^2.8.1",
  52. "taze": "^0.9.1",
  53. "terser": "^5.30.3",
  54. "typescript": "^4.9.5",
  55. "unocss": "^0.51.4",
  56. "unplugin-auto-import": "^0.15.2",
  57. "unplugin-vue-components": "^0.24.1",
  58. "unplugin-vue-macros": "^2.0.0",
  59. "vite": "^4.2.1",
  60. "vite-plugin-pages": "^0.29.0",
  61. "vite-plugin-top-level-await": "^1.4.1",
  62. "vite-plugin-windicss": "^1.8.10",
  63. "vitest": "^0.30.1",
  64. "vue-tsc": "^1.2.0",
  65. "windicss": "^3.5.6"
  66. },
  67. "eslintConfig": {
  68. "extends": [
  69. "@antfu",
  70. "@unocss"
  71. ],
  72. "ignorePatterns": [
  73. "src/styles/**/*.scss"
  74. ],
  75. "rules": {
  76. "no-console": "off"
  77. }
  78. }
  79. }