package.json 856 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "demo",
  3. "type": "module",
  4. "version": "0.0.0",
  5. "private": true,
  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 --build --force",
  12. "lint": "eslint .",
  13. "lint:fix": "eslint . --fix"
  14. },
  15. "dependencies": {
  16. "highlight.js": "^11.10.0",
  17. "markdown-it": "^14.1.0",
  18. "vue": "^3.4.38"
  19. },
  20. "devDependencies": {
  21. "@antfu/eslint-config": "^2.27.1",
  22. "@tsconfig/node20": "^20.1.4",
  23. "@types/markdown-it": "^14.1.2",
  24. "@types/node": "^22.5.0",
  25. "@vitejs/plugin-vue": "^5.1.2",
  26. "@vue/tsconfig": "^0.5.1",
  27. "eslint": "^9.9.1",
  28. "npm-run-all2": "^6.2.2",
  29. "typescript": "~5.5.4",
  30. "vite": "^5.4.2",
  31. "vite-plugin-vue-devtools": "^7.3.9",
  32. "vue-tsc": "^2.0.29"
  33. }
  34. }