-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 4.18 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 4.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "diver-chat",
"version": "1.0.0",
"description": "Tiny private assistant harness: Markdown assistants plus triggers, tools, permissions, and workers.",
"main": "dist/src/cli.js",
"scripts": {
"test": "npm run build && node scripts/test-diver-rename.mjs && node scripts/test-diver-auth-config.mjs && node scripts/test-mi-agent-perf.mjs && node scripts/test-mi-agent-perf-method.mjs && node scripts/test-mi-capability-matrix.mjs && node scripts/test-mi-cli-surfaces.mjs && node scripts/test-mi-web-api-e2e.mjs && node scripts/test-mi-web-chat-systemd-installer.mjs && node scripts/test-mi-stack-installer.mjs && node scripts/test-mi-photon-service-installer.mjs && node scripts/test-mi-user-units-installer.mjs && node scripts/test-mi-pi-isolation.mjs && node scripts/test-mi-assistant-quality.mjs && node scripts/test-mi-capabilities.mjs && node scripts/test-mi-security-hardening.mjs && node scripts/test-mi-extension-ui.mjs && node scripts/test-mi-agent-view.mjs && node scripts/test-mi-agent-extension-parity.mjs && node scripts/test-mi-web-chat-routing.mjs && node scripts/test-mi-imessage-scenarios.mjs && node scripts/test-mi-imessage-coordinator-rpc.mjs && node scripts/test-mi-imessage-coordinator.mjs && tsx scripts/test-mi-orchestrator-adapter.ts && node scripts/test-mi-pending-confirmations.mjs && node scripts/test-mi-gateway-client.mjs && node scripts/test-mi-worker-completion.mjs && node scripts/test-mi-imessage-v2.mjs && node scripts/test-mi-imessage-completion-presentation.mjs && node scripts/test-mi-imessage-monitor.mjs && node scripts/test-mi-budget-guard-monitor.mjs && node scripts/test-mi-monitoring.mjs && node scripts/test-mi-approvals-status.mjs && node scripts/test-mi-photon-bridge-relay.mjs && node scripts/test-mi-worker-result-report.mjs && node scripts/test-mi-worker-error-continue.mjs && node scripts/test-mi-deploy-canary.mjs && node scripts/test-mi-tick.mjs && node scripts/test-mi-main-queue-render.mjs && node scripts/test-mi-agent-render-snapshot.mjs && node scripts/test-mi-agent-dedupe.mjs && node scripts/test-mi-daemon-singleton.mjs && node scripts/test-mi-daemon-pi-session-e2e.mjs && node scripts/test-mi-agent-e2e.mjs && node scripts/test-mi-task-notifications.mjs && node scripts/test-mi-pi-context-governance.mjs && node scripts/test-mi-turn-crons.mjs && node scripts/test-mi-memory.mjs",
"test:agents": "npm run build && node scripts/test-mi-agent-view.mjs && node scripts/test-mi-agent-extension-parity.mjs && node scripts/test-mi-agent-perf.mjs && node scripts/test-mi-agent-perf-method.mjs && node scripts/test-mi-agent-render-snapshot.mjs && node scripts/test-mi-agent-dedupe.mjs && node scripts/test-mi-daemon-singleton.mjs && node scripts/test-mi-daemon-pi-session-e2e.mjs && node scripts/test-mi-agent-e2e.mjs && node scripts/test-mi-task-notifications.mjs",
"test:quality": "npm run build && node scripts/test-mi-assistant-quality.mjs",
"test:live": "node scripts/test-mi-live-smoke.mjs",
"test:subscription-gateway": "node scripts/test-mi-subscription-gateway-installer.mjs && /opt/litellm/bin/python gateway/test_pi_subscription_handler.py",
"test:mi-stack": "node scripts/test-mi-stack-installer.mjs && node scripts/test-mi-web-chat-systemd-installer.mjs",
"setup:mi-gateway-models": "node scripts/install-mi-gateway-models.mjs",
"test:mi-surfaces": "npm run build && node scripts/test-mi-capability-matrix.mjs && node scripts/test-mi-cli-surfaces.mjs && node scripts/test-mi-web-api-e2e.mjs && node scripts/test-mi-assistant-quality.mjs && node scripts/test-mi-photon-bridge-relay.mjs",
"build": "tsc",
"tick": "tsx src/tick.ts",
"mi": "tsx src/cli.ts",
"photon": "node scripts/mi-photon-bridge.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@flue/cli": "^0.3.10",
"@flue/sdk": "^0.3.10",
"@mariozechner/pi-coding-agent": "^0.73.1",
"@types/web-push": "^3.6.4",
"dotenv": "^17.4.2",
"spectrum-ts": "3.1.0",
"typebox": "^1.1.24",
"valibot": "^1.3.1",
"web-push": "^3.6.7"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
},
"bin": {
"diver": "dist/src/cli.js",
"mi": "dist/src/cli.js"
}
}