package.json 797 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "next-themes",
  3. "version": "0.4.6",
  4. "license": "MIT",
  5. "main": "./dist/index.js",
  6. "module": "./dist/index.mjs",
  7. "types": "./dist/index.d.ts",
  8. "files": [
  9. "dist"
  10. ],
  11. "exports": {
  12. ".": {
  13. "types": "./dist/index.d.ts",
  14. "import": "./dist/index.mjs",
  15. "require": "./dist/index.js"
  16. }
  17. },
  18. "peerDependencies": {
  19. "react": "^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc",
  20. "react-dom": "^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc"
  21. },
  22. "devDependencies": {
  23. "react": "^18.2.0",
  24. "react-dom": "^18.2.0"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/pacocoursey/next-themes.git"
  29. },
  30. "scripts": {
  31. "prepublish": "pnpm build",
  32. "build": "tsup",
  33. "dev": "tsup --watch",
  34. "test": "vitest run __tests__"
  35. }
  36. }