Files
collabvm-1.2.ts/qemu/package.json
modeco80 39521a4b1d misc stuff from production
(also refactors qemu a bit)
2024-06-19 23:30:29 -04:00

32 lines
640 B
JSON

{
"name": "@cvmts/qemu",
"version": "1.0.0",
"description": "A simple and easy to use QEMU supervision runtime",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "parcel build src/index.ts --target node --target types"
},
"author": "",
"license": "MIT",
"targets": {
"types": {},
"node": {
"context": "node",
"isLibrary": true,
"outputFormat": "esmodule"
}
},
"dependencies": {
"@computernewb/nodejs-rfb": "*",
"@cvmts/shared": "*",
"execa": "^8.0.1",
"split": "^1.0.1"
},
"devDependencies": {
"@types/split": "^1.0.5",
"parcel": "^2.12.0"
}
}