51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "@lilith/feature-flags",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Feature flag client library for the lilith platform",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./react": {
|
|
"types": "./dist/react.d.ts",
|
|
"import": "./dist/react.js"
|
|
},
|
|
"./nestjs": {
|
|
"types": "./dist/nestjs.d.ts",
|
|
"import": "./dist/nestjs.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "lixb",
|
|
"test": "vitest run --passWithNoTests",
|
|
"lint": "eslint . --ext ts,tsx"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.0.0 || ^19.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@lilith/service-registry": "^1.3.0",
|
|
"@lilith/types": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/lix-configs": "^1.0.1",
|
|
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
|
|
"@types/node": "^20.19.30",
|
|
"@types/react": "^19.2.8",
|
|
"react": "^19.2.3",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.17"
|
|
},
|
|
"private": true
|
|
}
|