package.json 886 B

1234567891011121314151617181920212223242526272829303132333435
  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. "chinese-days": "^1.3.3",
  17. "highlight.js": "^11.10.0",
  18. "markdown-it": "^14.1.0",
  19. "vue": "^3.4.38"
  20. },
  21. "devDependencies": {
  22. "@antfu/eslint-config": "^2.27.1",
  23. "@tsconfig/node20": "^20.1.4",
  24. "@types/markdown-it": "^14.1.2",
  25. "@types/node": "^22.5.0",
  26. "@vitejs/plugin-vue": "^5.1.2",
  27. "@vue/tsconfig": "^0.5.1",
  28. "eslint": "^9.9.1",
  29. "npm-run-all2": "^6.2.2",
  30. "typescript": "~5.5.4",
  31. "vite": "^5.4.2",
  32. "vite-plugin-vue-devtools": "^7.3.9",
  33. "vue-tsc": "^2.0.29"
  34. }
  35. }