package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@json-render/core",
  3. "version": "0.5.1",
  4. "license": "Apache-2.0",
  5. "description": "JSON becomes real things. Define your catalog, register your components, let AI generate.",
  6. "keywords": [
  7. "json",
  8. "ui",
  9. "react",
  10. "ai",
  11. "generative-ui",
  12. "llm",
  13. "schema",
  14. "zod",
  15. "streaming"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/vercel-labs/json-render.git",
  20. "directory": "packages/core"
  21. },
  22. "homepage": "https://github.com/vercel-labs/json-render#readme",
  23. "bugs": {
  24. "url": "https://github.com/vercel-labs/json-render/issues"
  25. },
  26. "publishConfig": {
  27. "access": "public"
  28. },
  29. "main": "./dist/index.js",
  30. "module": "./dist/index.mjs",
  31. "types": "./dist/index.d.ts",
  32. "exports": {
  33. ".": {
  34. "types": "./dist/index.d.ts",
  35. "import": "./dist/index.mjs",
  36. "require": "./dist/index.js"
  37. }
  38. },
  39. "files": [
  40. "dist"
  41. ],
  42. "scripts": {
  43. "build": "tsup",
  44. "dev": "tsup --watch",
  45. "typecheck": "tsc --noEmit"
  46. },
  47. "dependencies": {
  48. "zod": "^4.0.0"
  49. },
  50. "devDependencies": {
  51. "@repo/typescript-config": "workspace:*",
  52. "tsup": "^8.0.2",
  53. "typescript": "^5.4.5"
  54. },
  55. "peerDependencies": {
  56. "zod": "^4.0.0"
  57. }
  58. }