Files
smartvm/package.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2026-02-08 21:47:33 +00:00
{
"name": "@push.rocks/smartvm",
"version": "1.0.0",
"private": false,
"description": "A TypeScript module wrapping Amazon Firecracker VMM for managing lightweight microVMs",
"type": "module",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"exports": {
".": {
"import": "./dist_ts/index.js",
"types": "./dist_ts/index.d.ts"
}
},
"scripts": {
"test": "(tstest test/ --verbose)",
"build": "(tsbuild --web --allowimplicitany)"
},
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartvm.git"
},
"license": "MIT",
"dependencies": {
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartexit": "^1.0.22",
"@push.rocks/smartrequest": "^5.0.1",
"@push.rocks/smartshell": "^3.2.3",
"@push.rocks/smartunique": "^3.0.9"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.1.2",
"@git.zone/tsrun": "^2.0.1",
"@git.zone/tstest": "^3.1.8",
"@types/node": "^25.2.2"
},
"files": [
"ts/**/*",
"dist_ts/**/*",
"assets/**/*",
"readme.md"
]
}