platform-codebase/features/feature-flags/shared/package.json

38 lines
862 B
JSON
Executable file

{
"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"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"dependencies": {
"@lilith/types": "workspace:*"
},
"devDependencies": {
"@types/node": "^20.19.30",
"@types/react": "^19.2.8",
"react": "^19.2.3",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}