mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
bd31a462a6
* validate package.json fields * update package.json fields
67 lines
1.3 KiB
JSON
67 lines
1.3 KiB
JSON
{
|
|
"name": "@flags-sdk/posthog",
|
|
"version": "0.2.2",
|
|
"description": "PostHog adapter for the Flags SDK",
|
|
"keywords": [
|
|
"flags-sdk",
|
|
"posthog",
|
|
"vercel",
|
|
"edge config",
|
|
"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",
|
|
"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": {
|
|
"@vercel/edge-config": "^1.4.3",
|
|
"posthog-node": "4.11.1"
|
|
},
|
|
"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": "6.4.1",
|
|
"vitest": "1.6.1"
|
|
}
|
|
}
|