| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "name": "@json-render/jotai",
- "version": "0.12.0",
- "license": "Apache-2.0",
- "description": "Jotai adapter for json-render StateStore",
- "keywords": [
- "json-render",
- "jotai",
- "state-management",
- "adapter"
- ],
- "repository": {
- "type": "git",
- "url": "git+https://github.com/vercel-labs/json-render.git",
- "directory": "packages/jotai"
- },
- "homepage": "https://github.com/vercel-labs/json-render#readme",
- "bugs": {
- "url": "https://github.com/vercel-labs/json-render/issues"
- },
- "publishConfig": {
- "access": "public"
- },
- "main": "./dist/index.js",
- "module": "./dist/index.mjs",
- "types": "./dist/index.d.ts",
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "import": "./dist/index.mjs",
- "require": "./dist/index.js"
- }
- },
- "files": [
- "dist"
- ],
- "scripts": {
- "build": "tsup",
- "dev": "tsup --watch",
- "check-types": "tsc --noEmit"
- },
- "dependencies": {
- "@json-render/core": "workspace:*"
- },
- "peerDependencies": {
- "jotai": ">=2.0.0"
- },
- "devDependencies": {
- "@internal/typescript-config": "workspace:*",
- "jotai": "^2.18.0",
- "tsup": "^8.0.2",
- "typescript": "^5.4.5"
- }
- }
|