58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "@lilith/ml-service-types",
|
|
"version": "0.1.22",
|
|
"description": "TypeScript types for Lilith ML services (SEO, i18n, Truth)",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
},
|
|
"./seo": {
|
|
"types": "./src/seo-service.ts",
|
|
"default": "./src/seo-service.ts"
|
|
},
|
|
"./i18n": {
|
|
"types": "./src/i18n-service.ts",
|
|
"default": "./src/i18n-service.ts"
|
|
},
|
|
"./truth": {
|
|
"types": "./src/truth-service.ts",
|
|
"default": "./src/truth-service.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"generate": "npm run generate:seo && npm run generate:i18n && npm run generate:truth",
|
|
"generate:seo": "pydantic2ts --module lilith_seo_service.models --output ./src/seo-service.ts",
|
|
"generate:i18n": "pydantic2ts --module lilith_i18n_service.models --output ./src/i18n-service.ts",
|
|
"generate:truth": "pydantic2ts --module lilith_truth_service.models --output ./src/truth-service.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "^2.3.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.black.local/api/packages/lilith/npm/"
|
|
},
|
|
"keywords": [
|
|
"lilith",
|
|
"ml",
|
|
"types",
|
|
"seo",
|
|
"i18n",
|
|
"truth"
|
|
],
|
|
"author": "Lilith Collective",
|
|
"license": "MIT",
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
}
|
|
}
|