co-mono/packages/coding-agent/examples/extensions/pi-dosbox/package.json
Mario Zechner 6515b1a3dd feat(coding-agent): add DOSBox terminal extension
- Render DOSBox framebuffer as images in terminal via emulators package
- Support keyboard input with js-dos key codes
- Push Kitty enhanced mode for proper key press/release events
- Standalone app (npm start) and pi extension entry point
- Exit with Ctrl+Q
2026-01-22 04:35:43 +01:00

23 lines
432 B
JSON

{
"name": "pi-dosbox",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "npx tsx src/main.ts",
"clean": "echo 'nothing to clean'",
"build": "echo 'nothing to build'",
"check": "echo 'nothing to check'"
},
"pi": {
"extensions": [
"./index.ts"
]
},
"dependencies": {
"emulators": "^8.3.9"
},
"devDependencies": {
"@types/node": "^20.11.30"
}
}