mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 21:03:19 +00:00
- 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
23 lines
432 B
JSON
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"
|
|
}
|
|
}
|