package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "vite-plugin-eslint",
  3. "version": "1.8.1",
  4. "description": "ESLint plugin for vite.",
  5. "author": "Xiang Gao",
  6. "license": "MIT",
  7. "main": "./dist/index.js",
  8. "module": "./dist/index.mjs",
  9. "types": "./dist/index.d.ts",
  10. "exports": {
  11. ".": {
  12. "import": "./dist/index.mjs",
  13. "require": "./dist/index.js"
  14. }
  15. },
  16. "files": [
  17. "dist"
  18. ],
  19. "scripts": {
  20. "dev": "npm run build -- --watch ./src",
  21. "lint": "eslint ./src --ext .js,.ts",
  22. "build": "tsup",
  23. "prepublishOnly": "npm run build",
  24. "release": "standard-version"
  25. },
  26. "keywords": [
  27. "eslint",
  28. "vite-plugin"
  29. ],
  30. "homepage": "https://github.com/gxmari007/vite-plugin-eslint",
  31. "repository": "git+https://github.com:gxmari007/vite-plugin-eslint.git",
  32. "config": {
  33. "commitizen": {
  34. "path": "cz-conventional-changelog"
  35. }
  36. },
  37. "publishConfig": {
  38. "registry": "https://registry.npmjs.org/"
  39. },
  40. "dependencies": {
  41. "@rollup/pluginutils": "^4.2.1",
  42. "@types/eslint": "^8.4.5",
  43. "rollup": "^2.77.2"
  44. },
  45. "devDependencies": {
  46. "@types/node": "^18.0.6",
  47. "@typescript-eslint/eslint-plugin": "^5.30.7",
  48. "@typescript-eslint/parser": "^5.30.7",
  49. "cz-conventional-changelog": "^3.3.0",
  50. "eslint": "^8.21.0",
  51. "eslint-config-prettier": "^8.5.0",
  52. "eslint-plugin-prettier": "^4.2.1",
  53. "prettier": "^2.7.1",
  54. "standard-version": "^9.5.0",
  55. "tsup": "^6.2.1",
  56. "typescript": "^4.7.4",
  57. "vite": "^3.0.8"
  58. },
  59. "peerDependencies": {
  60. "eslint": ">=7",
  61. "vite": ">=2"
  62. }
  63. }