package.json 1015 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@eslint/core",
  3. "version": "0.7.0",
  4. "description": "Runtime-agnostic core of ESLint",
  5. "type": "module",
  6. "types": "./dist/esm/types.d.ts",
  7. "exports": {
  8. "types": {
  9. "import": "./dist/esm/types.d.ts",
  10. "require": "./dist/cjs/types.d.cts"
  11. }
  12. },
  13. "files": [
  14. "dist"
  15. ],
  16. "publishConfig": {
  17. "access": "public"
  18. },
  19. "scripts": {
  20. "build:cts": "node -e \"fs.cpSync('dist/esm/types.d.ts', 'dist/cjs/types.d.cts')\"",
  21. "build": "tsc && npm run build:cts",
  22. "test:jsr": "npx jsr@latest publish --dry-run"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/eslint/rewrite.git"
  27. },
  28. "keywords": [
  29. "eslint",
  30. "core"
  31. ],
  32. "author": "Nicholas C. Zakas",
  33. "license": "Apache-2.0",
  34. "bugs": {
  35. "url": "https://github.com/eslint/rewrite/issues"
  36. },
  37. "homepage": "https://github.com/eslint/rewrite#readme",
  38. "devDependencies": {
  39. "typescript": "^5.4.5"
  40. },
  41. "engines": {
  42. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  43. }
  44. }