@servemate/dto
Version:
Type-safe DTO package for ServeMate types and Zod validation. Shared across server and client.
55 lines (54 loc) • 1.18 kB
JSON
{
"name": "@servemate/dto",
"version": "1.1.4",
"description": "Type-safe DTO package for ServeMate types and Zod validation. Shared across server and client.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build && npm test",
"pack": "npm pack",
"publish": "npm publish"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.7.2",
"zod": "^3.25.76"
},
"peerDependencies": {
"zod": "^3.23.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inmorpher/ServeMate-DTO.git"
},
"bugs": {
"url": "https://github.com/inmorpher/ServeMate-DTO/issues"
},
"homepage": "https://github.com/inmorpher/ServeMate-DTO#readme",
"keywords": [
"dto",
"servemate",
"typescript",
"restaurant",
"management",
"zod",
"validation",
"type-safe"
],
"author": "ServeMate Team",
"license": "ISC",
"publishConfig": {
"access": "public"
}
}