Files
github-actions[bot] 6444210ee9 Version Packages (#493)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-09-09 09:26:12 +00:00

67 lines
1.3 KiB
JSON

{
"name": "@flags-sdk/vercel",
"version": "1.4.8",
"description": "A Flags SDK adapter for Vercel Flags",
"keywords": [
"vercel",
"flags",
"vercel flags",
"feature flags",
"flags sdk"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/flags.git"
},
"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": "tsup",
"dev": "tsup --watch",
"check": "biome check",
"test": "vitest --run",
"test:watch": "vitest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@vercel/flags-core": "workspace:*"
},
"devDependencies": {
"@types/node": "22.14.0",
"flags": "workspace:*",
"msw": "2.6.4",
"next": "16.2.12",
"tsup": "8.5.1",
"typescript": "5.6.3",
"vite": "8.1.5",
"vitest": "4.1.10"
},
"peerDependencies": {
"flags": "*"
},
"publishConfig": {
"access": "public"
}
}