-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 999 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 999 Bytes
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
{
"name": "agenium-search",
"version": "0.1.0",
"description": "Agent Search Engine - Indexes agents, MCP servers, tools, and resources",
"private": true,
"type": "module",
"workspaces": [
"src/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"dev": "docker compose -f infra/docker/docker-compose.dev.yml up",
"infra:up": "docker compose -f infra/docker/docker-compose.yml up -d",
"infra:down": "docker compose -f infra/docker/docker-compose.yml down",
"db:migrate": "node scripts/migrate.js",
"db:seed": "node scripts/seed.js"
},
"keywords": [
"agents",
"search",
"mcp",
"a2a",
"agenium"
],
"author": "Agenium Team",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"typescript": "^5.5.0"
}
}