package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "modtool",
  3. "version": "0.0.0",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "run-p type-check build-only",
  9. "preview": "vite preview",
  10. "build-only": "vite build",
  11. "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
  12. "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
  13. "test": "vitest"
  14. },
  15. "dependencies": {
  16. "@guolao/vue-monaco-editor": "^1.5.1",
  17. "bootstrap": "^5.3.3",
  18. "fast-xml-parser": "^4.3.6",
  19. "jszip": "^3.10.1",
  20. "pinia": "^2.1.7",
  21. "vue": "^3.4.21"
  22. },
  23. "devDependencies": {
  24. "@rushstack/eslint-patch": "^1.8.0",
  25. "@tsconfig/node18": "^18.2.2",
  26. "@types/node": "^20.11.30",
  27. "@vitejs/plugin-vue": "^5.0.4",
  28. "@vue/eslint-config-typescript": "^13.0.0",
  29. "@vue/tsconfig": "^0.5.1",
  30. "eslint": "^8.57.0",
  31. "eslint-plugin-vue": "^9.23.0",
  32. "npm-run-all": "^4.1.5",
  33. "typescript": "~5.4.3",
  34. "vite": "^5.2.4",
  35. "vitest": "^1.4.0",
  36. "vue-tsc": "^2.0.7"
  37. }
  38. }