@robylon/robylon-web-react-sdk
Version:
React SDK for Robylon AI Chatbot
74 lines (73 loc) • 2.24 kB
JSON
{
"name": "@robylon/robylon-web-react-sdk",
"version": "1.1.1",
"description": "React SDK for Robylon AI Chatbot",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build:development": "npm run clean && cross-env NODE_ENV=development rollup -c",
"build:staging": "npm run clean && cross-env NODE_ENV=staging rollup -c",
"build:production": "npm run clean && cross-env NODE_ENV=production rollup -c",
"build": "npm run build:development",
"publish:staging": "npm version prerelease --preid=staging && npm publish --tag staging",
"publish:production": "npm version patch && npm publish --tag latest",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"chatbot",
"ai",
"robylon",
"support"
],
"author": "Robylon",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/OneWorldNation/robylon-web-react-sdk.git"
},
"bugs": {
"url": "https://github.com/OneWorldNation/robylon-web-react-sdk/issues"
},
"homepage": "https://app.robylon.ai",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"rollup": "^3.29.5",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.1.1",
"tslib": "^2.8.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}