flybrain/packages/feed/package.json
acamilo 660c3cf00d
Some checks failed
ci / node 22 (test + typecheck) (push) Has been cancelled
ci / rust stable (cargo test --workspace --release) (push) Has been cancelled
ci / infra/tests/lint.sh (push) Has been cancelled
ci / playwright apps/stage (allowed to fail) (push) Has been cancelled
flybrain v0.4.0: public tree (history retained privately)
2026-09-21 15:09:46 +00:00

28 lines
817 B
JSON

{
"name": "@flybrain/feed",
"version": "0.1.0",
"description": "Shared TypeScript types, binary snapshot codec, JSON Schema and a fake flysim server for the feed protocol (docs/feed-protocol.md) and control API (docs/control-api.md), consumed by flystage and flybridge.",
"license": "Apache-2.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./fake": "./src/fake/server.ts"
},
"scripts": {
"test": "node --import tsx --test tests/**/*.test.ts",
"typecheck": "tsc -p tsconfig.json --pretty false"
},
"dependencies": {
"ws": "8.21.3"
},
"devDependencies": {
"@types/node": "22.17.0",
"@types/ws": "8.18.1",
"ajv": "8.20.0",
"tsx": "4.20.3",
"typescript": "5.9.2"
}
}