mirror of
https://github.com/badlogic/pi-mono.git
synced 2026-08-16 12:13:44 +00:00
Keep the stable socket in an opaque detached coordinator while server processes own detached worker discovery and lifecycle. Remove the public drain RPC in favor of server replacement through coordinator routing.
56 lines
1.1 KiB
JSON
56 lines
1.1 KiB
JSON
{
|
|
"name": "@earendil-works/pi-client",
|
|
"version": "0.84.2",
|
|
"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.84.2"
|
|
},
|
|
"devDependencies": {
|
|
"shx": "0.4.0",
|
|
"vitest": "4.1.9"
|
|
}
|
|
}
|