UNPKG

bkt-react-client-sdk

Version:

Bucketeer React Client SDK - A TypeScript React library for feature flagging

79 lines 2.39 kB
{ "name": "bkt-react-client-sdk", "version": "0.0.10", "description": "Bucketeer React Client SDK - A TypeScript React library for feature flagging", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "files": [ "dist" ], "keywords": [ "bucketeer", "react", "feature-flags", "typescript", "sdk" ], "author": "Bucketeer Team", "license": "MIT", "dependencies": { "bkt-js-client-sdk": "2.2.14" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.8", "@rollup/plugin-node-resolve": "^15.3.1", "@rollup/plugin-replace": "^6.0.2", "@rollup/plugin-typescript": "^11.1.6", "@testing-library/dom": "^10.4.0", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.3.0", "@types/jest": "^29.5.14", "@types/node": "22.13.14", "@types/react": "^18.3.23", "@types/react-dom": "^18.3.7", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", "eslint": "^8.57.1", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.4.1", "eslint-plugin-react": "^7.37.5", "eslint-plugin-react-hooks": "^5.2.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "prettier": "^3.5.3", "react": "^18.3.1", "react-dom": "^18.3.1", "rollup": "^4.43.0", "ts-jest": "^29.4.0", "tslib": "^2.8.1", "typescript": "^5.8.3" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" }, "repository": { "type": "git", "url": "https://github.com/bucketeer-io/react-client-sdk.git" }, "bugs": { "url": "https://github.com/bucketeer-io/react-client-sdk/issues" }, "homepage": "https://github.com/bucketeer-io/react-client-sdk#readme", "scripts": { "build": "rollup -c", "dev": "rollup -c -w", "test": "jest --runInBand", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.{ts,tsx} --fix", "lint:check": "eslint src/**/*.{ts,tsx}", "format": "prettier --write src/**/*.{ts,tsx}", "format:check": "prettier --check src/**/*.{ts,tsx}", "type-check": "tsc --noEmit", "example:start": "cd example && pnpm start", "example:build": "cd example && pnpm build", "publish-npm": "pnpm build && pnpm publish --access public" } }