package.json 847 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "ludash",
  3. "version": "1.0.0",
  4. "description": "toolkit",
  5. "main": "lib/index.js",
  6. "typings": "types/index.d.ts",
  7. "scripts": {
  8. "serve": "vue-cli-service serve",
  9. "build": "vue-cli-service build",
  10. "lint": "vue-cli-service lint",
  11. "lint2": "eslint . --ext .ts --fix",
  12. "lib": "tsc"
  13. },
  14. "repository": "https://gitee.com/swust_0602/ludash.git",
  15. "author": "shawn",
  16. "license": "ISC",
  17. "dependencies": {
  18. "core-js": "^3.8.3",
  19. "vue": "^3.2.13",
  20. "vue-router": "^4.0.3",
  21. "vuex": "^4.0.0"
  22. },
  23. "devDependencies": {
  24. "@typescript-eslint/eslint-plugin": "^5.60.0",
  25. "@typescript-eslint/parser": "^5.60.0",
  26. "eslint": "^8.43.0",
  27. "eslint-config-prettier": "^8.8.0",
  28. "eslint-plugin-prettier": "^4.2.1",
  29. "prettier": "^2.8.8",
  30. "tslib": "^2.5.3",
  31. "typescript": "^5.1.3"
  32. }
  33. }