UNPKG

@gensx/react

Version:

React hooks and components for GenSX AI workflows.

65 lines 1.42 kB
{ "name": "@gensx/react", "version": "0.2.7", "description": "React hooks and components for GenSX AI workflows.", "type": "module", "main": "./dist/cjs/index.cjs", "module": "./dist/esm/index.js", "types": "./dist/cjs/index.d.ts", "engines": { "node": ">=18.0.0", "pnpm": ">=9.0.0" }, "repository": { "type": "git", "url": "https://github.com/gensx-inc/gensx.git", "directory": "packages/gensx-react" }, "exports": { ".": { "types": { "import": "./dist/esm/index.d.ts", "require": "./dist/cjs/index.d.ts", "default": "./dist/cjs/index.d.ts" }, "import": "./dist/esm/index.js", "require": "./dist/cjs/index.cjs" } }, "files": [ "dist", "src" ], "keywords": [ "gensx", "react", "hooks", "ai" ], "author": "GenSX Team", "license": "Apache-2.0", "dependencies": { "fast-json-patch": "^3.1.1", "@gensx/client": "0.1.10", "@gensx/core": "0.5.5" }, "devDependencies": { "@types/react": "^19", "@types/react-dom": "^19", "typescript": "^5" }, "peerDependencies": { "react": ">=18.0.0" }, "publishConfig": { "access": "public" }, "scripts": { "build": "rollup -c", "dev": "rollup -c --watch", "lint": "eslint . --max-warnings 0", "lint:fix": "eslint . --fix", "type-check": "tsc --noEmit", "clean": "rm -rf dist" } }