feat(domain): centralize data definition

This commit is contained in:
2025-11-17 00:04:27 +02:00
parent e7585aa76c
commit f39635e04f
96 changed files with 3474 additions and 1167 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"dependencies": {
"@hono/zod-openapi": "^1.1.4",
"zod": "catalog:"
},
"devDependencies": {
"@basango/tsconfig": "workspace:*"
},
"exports": {
"./constants": "./src/constants.ts",
"./crawler": "./src/crawler/index.ts",
"./models": "./src/models/index.ts"
},
"imports": {
"#domain/*": "./src/*"
},
"name": "@basango/domain",
"private": true,
"scripts": {
"clean": "rm -rf .turbo node_modules",
"typecheck": "tsc --noEmit"
},
"type": "module"
}