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

67 lines
1.3 KiB
JSON

{
"name": "@flags-sdk/reflag",
"version": "1.0.2",
"description": "Reflag provider for the Flags SDK",
"keywords": [
"flags-sdk",
"reflag",
"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": "Ron Cohen <cohen1@gmail.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",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@reflag/node-sdk": "1.0.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"
}
}