Files
github-actions[bot] c7a56d6a66 Version Packages (#461)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-08-04 19:12:09 +02:00

68 lines
1.3 KiB
JSON

{
"name": "@flags-sdk/posthog",
"version": "1.0.1",
"description": "PostHog adapter for the Flags SDK",
"keywords": [
"flags-sdk",
"posthog",
"vercel",
"feature flags",
"flags"
],
"homepage": "https://flags-sdk.dev",
"bugs": {
"url": "https://github.com/vercel/flags/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/flags.git"
},
"license": "MIT",
"author": "Aaron Morris <aaron.morris@vercel.com>",
"sideEffects": false,
"type": "module",
"engines": {
"node": "^20.20.0 || >=22.22.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"typesVersions": {
"*": {
".": [
"dist/*.d.ts",
"dist/*.d.cts"
]
}
},
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"build": "rimraf dist && tsup",
"dev": "tsup --watch --clean=false",
"check": "biome check",
"test": "vitest --run",
"test:watch": "vitest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"posthog-node": "5.45.0"
},
"devDependencies": {
"@types/node": "22.14.0",
"flags": "workspace:*",
"msw": "2.6.4",
"rimraf": "6.1.2",
"tsup": "8.5.1",
"typescript": "5.8.2",
"vite": "8.1.5",
"vitest": "4.1.10"
}
}