-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 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
45
{
"name": "agent0-semantic-search-service",
"version": "0.1.0",
"description": "Standalone semantic search service for ERC-8004 agents using Cloudflare Workers",
"type": "module",
"main": "worker/src/index.ts",
"scripts": {
"dev": "wrangler dev",
"dev:test-cron": "wrangler dev --test-scheduled",
"deploy": "wrangler deploy",
"tail": "wrangler tail",
"sync:direct": "npx tsx scripts/sync-local-direct.ts",
"reindex": "npx tsx scripts/reindex-metadata.ts",
"test:local": "npx tsx scripts/test-local-queue.ts",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"semantic-search",
"vector-search",
"erc-8004",
"cloudflare-workers"
],
"author": "",
"license": "MIT",
"dependencies": {
"@pinecone-database/pinecone": "^6.1.3",
"agent0-sdk": "^0.31.0",
"hono": "^4.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241106.0",
"@types/node": "^20.10.0",
"@vitest/ui": "^1.0.0",
"miniflare": "^3.20241125.1",
"shadcn": "^3.5.1",
"typescript": "^5.3.3",
"vitest": "^1.0.0",
"wrangler": "^4.51.0"
},
"overrides": {
"@pinecone-database/pinecone": "^6.1.3"
}
}