Initialize smartkvm package

This commit is contained in:
2026-05-16 13:41:55 +00:00
commit 8588c6c70d
18 changed files with 8751 additions and 0 deletions
+66
View File
@@ -0,0 +1,66 @@
{
"name": "@push.rocks/smartkvm",
"version": "1.0.0",
"private": false,
"description": "Programmable browser-based visual KVM automation with frame capture and keyboard transport.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist_ts/index.js",
"types": "./dist_ts/index.d.ts"
}
},
"author": "Task Venture Capital GmbH <hello@task.vc>",
"license": "MIT",
"scripts": {
"test": "tstest test/ --verbose --logfile --timeout 120",
"format": "gitzone format",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
},
"dependencies": {
"puppeteer": "^24.42.0"
},
"packageManager": "pnpm@10.28.2",
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
".smartconfig.json",
"license",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
],
"keywords": [
"kvm",
"browser automation",
"puppeteer",
"remote control",
"visual automation",
"keyboard automation",
"frame capture"
],
"homepage": "https://code.foss.global/push.rocks/smartkvm#readme",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartkvm.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartkvm/issues"
}
}