package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@json-render/zustand",
  3. "version": "0.12.0",
  4. "license": "Apache-2.0",
  5. "description": "Zustand adapter for json-render StateStore",
  6. "keywords": [
  7. "json-render",
  8. "zustand",
  9. "state-management",
  10. "adapter"
  11. ],
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/vercel-labs/json-render.git",
  15. "directory": "packages/zustand"
  16. },
  17. "homepage": "https://json-render.dev",
  18. "bugs": {
  19. "url": "https://github.com/vercel-labs/json-render/issues"
  20. },
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "main": "./dist/index.js",
  25. "module": "./dist/index.mjs",
  26. "types": "./dist/index.d.ts",
  27. "exports": {
  28. ".": {
  29. "types": "./dist/index.d.ts",
  30. "import": "./dist/index.mjs",
  31. "require": "./dist/index.js"
  32. }
  33. },
  34. "files": [
  35. "dist"
  36. ],
  37. "scripts": {
  38. "build": "tsup",
  39. "dev": "tsup --watch",
  40. "check-types": "tsc --noEmit"
  41. },
  42. "dependencies": {
  43. "@json-render/core": "workspace:*"
  44. },
  45. "peerDependencies": {
  46. "zustand": ">=5.0.0"
  47. },
  48. "devDependencies": {
  49. "@internal/typescript-config": "workspace:*",
  50. "tsup": "^8.0.2",
  51. "typescript": "^5.4.5",
  52. "zustand": "^5.0.11"
  53. }
  54. }