-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 2.11 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
{
"name": "oracle",
"version": "0.1.0",
"description": "Browser-based tool for AI agents to query ChatGPT via browser automation. macOS only.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/productioneer/oracle.git"
},
"bugs": "https://github.com/productioneer/oracle/issues",
"homepage": "https://github.com/productioneer/oracle",
"type": "commonjs",
"engines": {
"node": ">=22"
},
"bin": {
"oracle": "dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/cli.js",
"dev": "tsx src/cli.ts",
"worker": "tsx src/worker.ts",
"lint": "npx -y oxlint@latest",
"test": "npm run test:safe",
"test:all": "npm run build && node --test tests/*.test.js",
"test:safe": "npm run build && node --test tests/attachments.test.js tests/chatgpt-submit.test.js tests/chrome-restart-approval.test.js tests/cli-errors.test.js tests/cli-list.test.js tests/cli-result.test.js tests/cross-block-recovery.test.js tests/endurance.test.js tests/extraction.test.js tests/firefox-app.test.js tests/firefox-home.test.js tests/firefox-process.test.js tests/firefox-xulstore.test.js tests/focus-monitor.test.js tests/focus.test.js tests/health.test.js tests/notify.test.js tests/personal-chrome.test.js tests/profiles.test.js tests/recovery.test.js tests/run-options.test.js tests/telemetry.test.js tests/thinking-extraction.test.js tests/thinking-panel.test.js tests/thinking-state.test.js tests/new-conversation.test.js tests/cli-prune-stale.test.js",
"test:chrome": "npm run build && node --test tests/window-observer.test.js tests/monitor-integration.test.js tests/focus-positive.test.js",
"test:mock": "node scripts/mock-server.js --once",
"eval:agents": "node scripts/evals/run-agent-evals.js",
"eval:codex": "node scripts/evals/run-codex-agent-eval.js",
"eval:claude": "node scripts/evals/run-claude-agent-eval.js"
},
"dependencies": {
"commander": "^12.1.0",
"playwright": "^1.57.0"
},
"devDependencies": {
"@openai/codex-sdk": "^0.87.0",
"@types/node": "^22.10.7",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}