socketcomputer/qemu/package.json

33 lines
695 B
JSON
Raw Normal View History

2024-04-02 07:43:54 -04:00
{
"name": "@socketcomputer/qemu",
"version": "1.0.0",
"private": "true",
"description": "QEMU runtime for socketcomputer backend",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
2024-04-02 07:43:54 -04:00
"type": "module",
"scripts": {
"build": "parcel build src/index.ts --target node --target types"
2024-04-02 07:43:54 -04:00
},
"author": "",
"license": "MIT",
"targets": {
"types": {},
"node": {
"context": "node",
"isLibrary": true,
"outputFormat": "esmodule"
}
},
2024-04-02 07:43:54 -04:00
"dependencies": {
"canvas": "^2.11.2",
"execa": "^8.0.1",
"split": "^1.0.1"
},
"devDependencies": {
2024-04-05 04:57:26 -04:00
"parcel": "^2.12.0",
"@types/node": "^20.12.2",
"@types/split": "^1.0.5"
2024-04-02 07:43:54 -04:00
}
}