Files

24 lines
647 B
JSON
Raw Permalink Normal View History

{
"name": "@the-order/schemas",
"version": "0.1.0",
"private": true,
"description": "Shared schemas and contracts for The Order",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint 'src/**/*.ts' --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.spec.ts' --ignore-pattern '**/*.js' --ignore-pattern '**/*.d.ts'",
"type-check": "tsc --noEmit",
"generate:openapi": "ts-node scripts/generate-openapi.ts"
},
"dependencies": {
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.6",
"typescript": "^5.3.3"
}
}