mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
37 lines
808 B
JSON
37 lines
808 B
JSON
{
|
|
"name": "@getpaseo/protocol",
|
|
"version": "0.1.91-beta.2",
|
|
"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": {
|
|
"clean": "node ../../scripts/clean-package-dist.mjs",
|
|
"build": "tsc -p tsconfig.json --incremental false",
|
|
"build:clean": "npm run clean && npm run build",
|
|
"prepack": "npm run build:clean",
|
|
"typecheck": "tsgo --noEmit",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^4.1.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.9.0",
|
|
"typescript": "^5.2.2",
|
|
"vitest": "^4.1.6"
|
|
}
|
|
}
|