package.json 697 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@remix-run/router",
  3. "version": "1.3.2",
  4. "description": "Nested/Data-driven/Framework-agnostic Routing",
  5. "keywords": [
  6. "remix",
  7. "router",
  8. "location"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/remix-run/react-router",
  13. "directory": "packages/router"
  14. },
  15. "license": "MIT",
  16. "author": "Remix Software <hello@remix.run>",
  17. "sideEffects": false,
  18. "main": "./dist/router.cjs.js",
  19. "unpkg": "./dist/router.umd.min.js",
  20. "module": "./dist/router.js",
  21. "types": "./dist/index.d.ts",
  22. "files": [
  23. "dist/",
  24. "*.ts",
  25. "CHANGELOG.md"
  26. ],
  27. "engines": {
  28. "node": ">=14"
  29. },
  30. "publishConfig": {
  31. "access": "public"
  32. }
  33. }