-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 2.85 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "swarm-scout",
"version": "1.0.1",
"description": "Headless agent framework with Bash, Ripgrep, and MCP support - invocable via TypeScript SDK, Python SDK, and CLI",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"scout": "./bin/index.js",
"swarm-scout": "./bin/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./sdk": {
"import": "./dist/sdk/typescript/index.js",
"types": "./dist/sdk/typescript/index.d.ts"
}
},
"scripts": {
"build": "node scripts/dev-kill-scout-mcp.cjs && tsc && npm run copy-templates",
"copy-templates": "mkdir -p dist/agents/templates && cp -r agents/templates/*.json dist/agents/templates/",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"postinstall": "node scripts/postinstall.cjs"
},
"keywords": [
"agent",
"llm",
"anthropic",
"claude",
"cerebras",
"qwen",
"bash",
"ripgrep",
"mcp",
"model-context-protocol",
"sdk",
"context-finding",
"code-analysis"
],
"author": "Swarm-Code",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Swarm-Code/scout.git"
},
"homepage": "https://github.com/Swarm-Code/scout#readme",
"bugs": {
"url": "https://github.com/Swarm-Code/scout/issues"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.63.1",
"@cerebras/cerebras_cloud_sdk": "^1.56.1",
"@modelcontextprotocol/sdk": "^1.18.2",
"@types/react": "^19.1.13",
"@xterm/headless": "^5.5.0",
"chalk": "^5.6.2",
"chardet": "^2.1.0",
"cli-spinners": "^3.3.0",
"clipboardy": "^5.0.0",
"commander": "^12.0.0",
"diff": "^8.0.2",
"env-paths": "^3.0.0",
"fast-glob": "^3.3.3",
"glob": "^11.0.3",
"ink": "^6.3.1",
"ink-box": "^2.0.0",
"ink-select-input": "^6.0.0",
"ink-spawn": "^0.1.4",
"ink-text-input": "^6.0.0",
"ink-use-stdout-dimensions": "^1.0.5",
"js-tiktoken": "^1.0.21",
"lodash": "^4.17.21",
"lru-cache": "^11.2.2",
"nanoid": "^5.1.6",
"node-pty": "^1.0.0",
"openai": "^4.77.0",
"ora": "^9.0.0",
"react": "^19.1.1",
"react-devtools-core": "^6.1.5",
"sharp": "^0.34.4",
"tabtab": "^3.0.2",
"tiktoken": "^1.0.22",
"wrap-ansi": "^9.0.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
},
"devDependencies": {
"@types/chardet": "^0.8.3",
"@types/diff": "^7.0.2",
"@types/env-paths": "^1.0.2",
"@types/glob": "^8.1.0",
"@types/lodash": "^4.17.20",
"@types/lru-cache": "^7.10.9",
"@types/node": "^20.11.0",
"ink-testing-library": "^4.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}