UNPKG

@probelabs/probe-chat

Version:

CLI and web interface for Probe code search (formerly @probelabs/probe-web and @probelabs/probe-chat)

101 lines (100 loc) 2.5 kB
{ "name": "@probelabs/probe-chat", "version": "0.6.0-rc87", "description": "CLI and web interface for Probe code search (formerly @probelabs/probe-web and @probelabs/probe-chat)", "main": "index.js", "type": "module", "bin": { "probe-chat": "./bin/probe-chat.js", "probe-web": "./bin/probe-chat.js" }, "scripts": { "start": "node index.js", "web": "node index.js --web", "build": "node build.js", "build:prod": "NODE_ENV=production node build.js", "test": "node --test test/integration/chatFlows.test.js test/integration/toolCalling.test.js", "test:chat": "node --test test/integration/chatFlows.test.js", "test:tools": "node --test test/integration/toolCalling.test.js", "prepublishOnly": "chmod +x ./bin/probe-chat.js" }, "keywords": [ "probe", "code-search", "chat", "ai", "cli", "web" ], "author": "Leonid Bugaev", "license": "Apache-2.0", "dependencies": { "@ai-sdk/anthropic": "^1.2.0", "@ai-sdk/google": "^1.2.1", "@ai-sdk/openai": "^1.3.0", "@buger/probe": "^0.6.0-rc87", "@opentelemetry/api": "^1.9.0", "@opentelemetry/exporter-trace-otlp-http": "^0.203.0", "@opentelemetry/resources": "^2.0.1", "@opentelemetry/sdk-node": "^0.203.0", "@opentelemetry/semantic-conventions": "^1.36.0", "@probelabs/probe": "*", "ai": "^4.2.0", "chalk": "^5.3.0", "commander": "^11.1.0", "dotenv": "^16.4.7", "glob": "^10.3.10", "inquirer": "^9.2.12", "ora": "^7.0.1", "tiktoken": "^1.0.20", "zod": "^3.24.2" }, "devDependencies": { "esbuild": "^0.21.5" }, "peerDependencies": { "aider-chat": ">=0.20.0" }, "peerDependenciesMeta": { "aider-chat": { "optional": true } }, "engines": { "node": ">=18.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/probelabs/probe.git" }, "bugs": { "url": "https://github.com/probelabs/probe/issues" }, "homepage": "https://github.com/probelabs/probe#readme", "publishConfig": { "access": "public" }, "files": [ "bin/", "storage/", "implement/", "test/", "index.js", "probeChat.js", "tokenCounter.js", "tokenUsageDisplay.js", "tools.js", "webServer.js", "auth.js", "probeTool.js", "cancelRequest.js", "telemetry.js", "fileSpanExporter.js", "appTracer.js", "index.html", "logo.png", "README.md", "TRACING.md", "LICENSE" ] }