socketcomputer/backend/package.json

30 lines
634 B
JSON
Raw Normal View History

2024-04-02 07:43:54 -04:00
{
"name": "@socketcomputer/backend",
"version": "1.0.0",
"description": "socket 2.0 backend",
"type": "module",
"scripts": {
"build": "parcel build src/index.ts --target node"
2024-04-02 07:43:54 -04:00
},
"author": "modeco80",
"license": "MIT",
"targets": {
2024-07-24 04:22:31 -04:00
"node": {
"context": "node",
"outputFormat": "esmodule"
}
},
2024-04-02 07:43:54 -04:00
"dependencies": {
2024-07-24 04:22:31 -04:00
"@computernewb/superqemu": "^0.1.0",
2024-04-02 07:43:54 -04:00
"@fastify/websocket": "^10.0.1",
"@socketcomputer/shared": "*",
2024-07-24 04:22:31 -04:00
"canvas": "^2.11.2",
2024-04-02 07:43:54 -04:00
"fastify": "^4.26.2",
2024-07-24 04:22:31 -04:00
"mnemonist": "^0.39.8"
2024-04-02 07:43:54 -04:00
},
"devDependencies": {
2024-07-24 04:22:31 -04:00
"@types/ws": "^8.5.10",
"parcel": "^2.12.0"
2024-04-02 07:43:54 -04:00
}
}