Files
2026-02-06 11:20:48 +01:00

70 lines
1.4 KiB
JSON

{
"name": "@flags-sdk/launchdarkly",
"version": "0.3.4",
"description": "LaunchDarkly provider for the Flags SDK",
"keywords": [
"flags-sdk",
"launchdarkly",
"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": "",
"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/edge-config": "^1.4.3"
},
"devDependencies": {
"@types/node": "20.11.17",
"flags": "workspace:*",
"msw": "2.6.4",
"rimraf": "6.1.2",
"tsup": "8.5.1",
"typescript": "5.6.3",
"vite": "5.4.21",
"vitest": "1.6.1"
},
"publishConfig": {
"access": "public"
}
}