pi-mono/packages/protocol/package.json
2026-08-16 12:48:59 +03:00

48 lines
922 B
JSON

{
"name": "@earendil-works/pi-protocol",
"version": "0.84.2",
"description": "Transport-neutral CBOR protocol for remote pi sessions",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"clean": "shx rm -rf dist",
"build": "tsgo -p tsconfig.build.json",
"test": "vitest --run",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"pi",
"protocol",
"cbor",
"binary",
"framing"
],
"author": "Earendil Works",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/earendil-works/pi.git",
"directory": "packages/protocol"
},
"engines": {
"node": ">=22.19.0"
},
"dependencies": {
"typebox": "1.3.7"
},
"devDependencies": {
"shx": "0.4.0",
"vitest": "4.1.9"
}
}