package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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.5",
  19. "jszip": "^3.10.1",
  20. "pinia": "^2.1.7",
  21. "vue": "^3.4.21",
  22. "yaml": "^2.4.1"
  23. },
  24. "devDependencies": {
  25. "@rushstack/eslint-patch": "^1.7.2",
  26. "@tsconfig/node18": "^18.2.2",
  27. "@types/node": "^20.11.26",
  28. "@vitejs/plugin-vue": "^5.0.4",
  29. "@vue/eslint-config-typescript": "^13.0.0",
  30. "@vue/tsconfig": "^0.5.1",
  31. "eslint": "^8.57.0",
  32. "eslint-plugin-vue": "^9.23.0",
  33. "npm-run-all": "^4.1.5",
  34. "typescript": "~5.4.2",
  35. "vite": "^5.1.6",
  36. "vitest": "^1.4.0",
  37. "vue-tsc": "^2.0.6"
  38. }
  39. }