Files
paseo/packages/protocol/package.json
2026-06-02 20:51:07 +07:00

35 lines
767 B
JSON

{
"name": "@getpaseo/protocol",
"version": "0.1.89",
"description": "Paseo shared protocol schemas and wire types",
"files": [
"dist",
"!dist/**/*.map",
"README.md"
],
"type": "module",
"exports": {
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist',{ recursive: true, force: true })\" && tsc -p tsconfig.json --incremental false",
"prepack": "npm run build",
"typecheck": "tsgo --noEmit",
"test": "vitest run"
},
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.9.0",
"typescript": "^5.2.2",
"vitest": "^4.1.6"
}
}