Files
gnome-jarvis/package.json
T
2026-09-11 14:55:34 -04:00

31 lines
1.2 KiB
JSON

{
"name": "jarvis-qvac",
"version": "0.1.0",
"private": true,
"description": "Local-first GNOME voice assistant powered by QVAC and agent-harness.",
"type": "module",
"engines": { "node": ">=22.17.0" },
"workspaces": ["daemon", "computer-use", "apps/control-center"],
"scripts": {
"start": "node daemon/index.js",
"test": "node --test",
"cu-doctor": "node computer-use/doctor.js",
"voice-doctor": "node daemon/voice-doctor.js",
"gpu-doctor": "node daemon/gpu-doctor.js",
"qvac:doctor": "qvac doctor",
"qvac:serve:diagnostic": "qvac serve --openai --host 127.0.0.1",
"qvac:status": "node -e \"import('./daemon/qvac-master.js').then(({qvacStatus})=>console.log(JSON.stringify(qvacStatus(), null, 2)))\"",
"package:extension": "bash packaging/build-extension.sh",
"package": "bash packaging/build-release.sh",
"package:test": "bash packaging/test-package.sh",
"first-run": "bash packaging/first-run.sh",
"install:user": "bash packaging/install.sh",
"uninstall:user": "bash packaging/uninstall.sh"
},
"dependencies": {
"@qvac/cli": "0.13.0",
"@qvac/sdk": "0.19.1",
"dbus-next": "^0.10.2"
}
}