pi-mono/packages/client/package.json
2026-07-31 13:01:12 +03:00

39 lines
1.1 KiB
JSON

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