Files
github-actions[bot] f0f8a00848 Version Packages (#465)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-08-12 08:39:34 +02:00

70 lines
1.4 KiB
JSON

{
"name": "@flags-sdk/launchdarkly",
"version": "1.1.1",
"description": "LaunchDarkly provider for the Flags SDK",
"keywords": [
"flags-sdk",
"launchdarkly",
"vercel",
"global 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": "Dominik Ferber <dominik@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": {
"@launchdarkly/vercel-server-sdk": "^1.3.34",
"@vercel/global-config": "^1.5.1"
},
"devDependencies": {
"@types/node": "22.14.0",
"flags": "workspace:*",
"msw": "2.6.4",
"rimraf": "6.1.2",
"tsup": "8.5.1",
"typescript": "5.6.3",
"vite": "8.1.5",
"vitest": "4.1.10"
},
"publishConfig": {
"access": "public"
}
}