Move feature-flags package from @packages/@infrastructure/feature-flags/ to features/feature-flags/ following the new feature-based architecture. The new location includes backend/, frontend/, and shared/ directories. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
821 B
JSON
36 lines
821 B
JSON
{
|
|
"name": "@lilith/feature-flags",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Feature flag client library for the lilith platform",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./react": "./src/react.ts",
|
|
"./nestjs": "./src/nestjs.ts"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc",
|
|
"test": "vitest run --passWithNoTests",
|
|
"lint": "eslint . --ext ts,tsx"
|
|
},
|
|
"dependencies": {},
|
|
"peerDependencies": {
|
|
"react": "^18.0.0 || ^19.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"react": "^19.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^2.0.0"
|
|
}
|
|
}
|