package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. },
  14. "dependencies": {
  15. "@guolao/vue-monaco-editor": "^1.5.1",
  16. "bootstrap": "^5.3.3",
  17. "fast-xml-parser": "^4.3.5",
  18. "jszip": "^3.10.1",
  19. "pinia": "^2.1.7",
  20. "vue": "^3.4.21",
  21. "yaml": "^2.4.1"
  22. },
  23. "devDependencies": {
  24. "@rushstack/eslint-patch": "^1.7.2",
  25. "@tsconfig/node18": "^18.2.2",
  26. "@types/node": "^20.11.26",
  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.2",
  34. "vite": "^5.1.6",
  35. "vue-tsc": "^2.0.6"
  36. }
  37. }