better-auth-feature-flags
Version:
Ship features safely with feature flags, A/B testing, and progressive rollouts - Better Auth plugin for modern release management
136 lines (135 loc) • 2.95 kB
JSON
{
"name": "better-auth-feature-flags",
"version": "0.2.1",
"description": "Ship features safely with feature flags, A/B testing, and progressive rollouts - Better Auth plugin for modern release management",
"keywords": [
"better-auth",
"feature-flags",
"feature-toggle",
"feature-management",
"auth",
"authentication",
"a-b-testing",
"remote-config",
"experimentation",
"toggles",
"flags",
"launchdarkly",
"unleash",
"growthbook",
"optimizely",
"flagsmith",
"posthog",
"split-io",
"statsig",
"feature-rollout",
"gradual-rollout",
"user-targeting",
"kill-switch",
"release-management",
"dynamic-configuration",
"configcat",
"flipt",
"devcycle",
"harness",
"segmentation",
"canary-deployment",
"progressive-rollout",
"beta-features",
"feature-gating",
"dark-launch",
"conditional-features",
"multivariate-testing",
"eppo",
"flagr",
"flipper",
"featureflags",
"rollout-io",
"molasses",
"kameleoon",
"taplytics"
],
"author": "Kriasoft <hello@kriasoft.com>",
"contributors": [
"Konstantin Tarkus <koistya@kriasoft.com>"
],
"homepage": "https://kriasoft.com/better-auth/",
"repository": {
"type": "git",
"url": "git+https://github.com/kriasoft/better-auth.git",
"directory": "plugins/feature-flags"
},
"bugs": {
"url": "https://github.com/kriasoft/better-auth/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/koistya"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js"
},
"./admin": {
"types": "./dist/client-admin.d.ts",
"import": "./dist/client-admin.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"dependencies": {
"zod": "^4.1.9"
},
"peerDependencies": {
"better-auth": "^1.3.11",
"react": "^18.0.0 || ^19.0.0",
"redis": "^4.0.0",
"ioredis": "^5.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"redis": {
"optional": true
},
"ioredis": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^24.5.1",
"@types/react": "^19.1.13",
"better-auth": "^1.3.11",
"better-call": "^1.0.19",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"publishConfig": {
"access": "public"
}
}