Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions packages/queryx/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
PORT=3000
PAYMENTS_RECEIVABLE_ADDRESS=0x0000000000000000000000000000000000000000
FACILITATOR_URL=
NETWORK=base
BRAVE_API_KEY=
OPENAI_API_KEY=
CACHE_TTL_SECONDS=120

# Optional advanced provider configuration
BRAVE_API_BASE=
OPENAI_API_BASE=
NODE_ENV=development
31 changes: 31 additions & 0 deletions packages/queryx/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "@langoustine69/queryx",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./app": "./src/app.ts"
},
"scripts": {
"dev": "bun --watch src/index.ts",
"test": "bun test",
"check": "tsc --noEmit"
},
"dependencies": {
"@lucid-agents/a2a": "workspace:*",
"@lucid-agents/ap2": "workspace:*",
"@lucid-agents/core": "workspace:*",
"@lucid-agents/http": "workspace:*",
"@lucid-agents/identity": "workspace:*",
"@lucid-agents/payments": "workspace:*",
"@lucid-agents/wallet": "workspace:*",
"hono": "^4.7.20",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.7.3"
}
}
15 changes: 15 additions & 0 deletions packages/queryx/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": ["bun"],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src", "test"]
}