28 lines
817 B
JSON
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"
|
|
}
|
|
}
|