UNPKG

@flows/react-components

Version:

Built-in components for Flows React SDK

73 lines 1.68 kB
{ "name": "@flows/react-components", "version": "1.2.1", "description": "Built-in components for Flows React SDK", "keywords": [ "react", "ux", "guide", "spotlight", "popover", "overlay", "users", "saas", "onboarding", "tour", "walkthrough", "user-onboarding", "feature-introductions", "onboarding-tool", "product-adoption", "product-tours" ], "license": "MIT", "sideEffects": false, "repository": { "type": "git", "url": "git+https://github.com/RBND-studio/flows-sdk.git" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^20", "@types/react": "^19", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "ts-jest": "^29.3.0", "tsup": "^8.4.0", "typescript": "^5.8.3", "@flows/shared": "1.0.0", "@flows/styles": "1.0.0" }, "peerDependencies": { "react": ">=17.0.2" }, "dependencies": { "@floating-ui/react-dom": "^2.1.2", "classnames": "^2.5.1" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" }, "./tour": { "types": "./dist/tour.d.ts", "import": "./dist/tour.mjs", "require": "./dist/tour.js" }, "./index.css": { "import": "./dist/index.css", "require": "./dist/index.css" } }, "scripts": { "dev": "tsup --watch --env.NODE_ENV development", "build": "tsup --env.NODE_ENV production", "lint": "eslint src", "tsc": "tsc -p tsconfig.json", "version": "pnpm version", "test": "jest --passWithNoTests", "test:watch": "jest --watch" } }