package.json 783 B

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