@usebool/sdk-react
Version:
React SDK for Bool feature flag system
49 lines • 1.27 kB
JSON
{
"name": "@usebool/sdk-react",
"version": "1.0.0",
"type": "module",
"description": "React SDK for Bool feature flag system",
"main": "./lib/index.cjs",
"module": "./lib/index.module.js",
"source": "./src/index.ts",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BoolOfficial/sdks.git"
},
"keywords": [
"bool",
"usebool",
"react",
"feature flags",
"feature toggles",
"client"
],
"author": "Bool <hello@usebool.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BoolOfficial/sdks/issues"
},
"homepage": "https://usebool.com",
"dependencies": {
"@usebool/sdk-js": "1.0.0"
},
"devDependencies": {
"@types/react": "^18.0.9",
"eslint": "^8.15.0",
"eslint-plugin-react": "^7.29.4"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"scripts": {
"ts-declaration": "tsc --declaration --emitDeclarationOnly --outDir lib",
"build": "pnpm ts-declaration && node scripts/build.js && echo 'React build complete'",
"test": "jest --passWithNoTests",
"lint": "eslint . --ext .ts,.tsx --max-warnings 0 --debug",
"typecheck": "tsc --noEmit && echo \"Checked types for sdk-react\" "
}
}