doesn't really need to be two seperate libraries. also preperation for other funnies the build script has been replaced with a much saner justfile which uses much saner "yarn workspace" invocations instead of blindly cding all over the place
29 lines
667 B
JSON
29 lines
667 B
JSON
{
|
|
"name": "@cvmts/cvmts",
|
|
"version": "1.0.0",
|
|
"description": "replacement for collabvm 1.2.11 because the old one :boom:",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc -outDir dist -rootDir src/",
|
|
"serve": "node dist/index.js"
|
|
},
|
|
"author": "Elijah R, modeco80",
|
|
"license": "GPL-3.0",
|
|
"dependencies": {
|
|
"@cvmts/cvm-rs": "*",
|
|
"@cvmts/qemu": "*",
|
|
"execa": "^8.0.1",
|
|
"mnemonist": "^0.39.5",
|
|
"sharp": "^0.33.3",
|
|
"toml": "^3.0.0",
|
|
"ws": "^8.14.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.12.5",
|
|
"@types/ws": "^8.5.5",
|
|
"prettier": "^3.2.5",
|
|
"typescript": "^5.4.4"
|
|
}
|
|
}
|