package.json 639 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@eslint/js",
  3. "version": "9.13.0",
  4. "description": "ESLint JavaScript language implementation",
  5. "main": "./src/index.js",
  6. "scripts": {},
  7. "files": [
  8. "LICENSE",
  9. "README.md",
  10. "src"
  11. ],
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/eslint/eslint.git",
  18. "directory": "packages/js"
  19. },
  20. "homepage": "https://eslint.org",
  21. "bugs": "https://github.com/eslint/eslint/issues/",
  22. "keywords": [
  23. "javascript",
  24. "eslint-plugin",
  25. "eslint"
  26. ],
  27. "license": "MIT",
  28. "engines": {
  29. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  30. }
  31. }