@horizon-apps/domain-schema-core
Version:
Core domain schema utilities for Horizon Platform - Schema generators, data enrichers, converters and specifications
73 lines • 1.64 kB
JSON
{
"name": "@horizon-apps/domain-schema-core",
"version": "1.4.2",
"description": "Core domain schema utilities for Horizon Platform - Schema generators, data enrichers, converters and specifications",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"docs",
"README.md"
],
"keywords": [
"horizon",
"domain",
"data",
"core",
"schema",
"zod",
"generator",
"enricher",
"converter",
"specifications",
"metadata",
"backend"
],
"author": "Horizon Platform",
"license": "MIT",
"dependencies": {
"@prisma/client": "^6.14.0",
"@types/pg": "^8.15.5",
"date-fns": "^2.30.0",
"pg": "^8.16.3",
"ramda": "^0.30.0",
"zod": "^3.25.67",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/ramda": "^0.30.0",
"@types/react": "^18.0.0",
"@vitest/ui": "^3.2.4",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/horizon-platform/domain-data-core.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "NODE_NO_WARNINGS=1 vitest",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit"
}
}