-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.35 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.35 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
{
"name": "squads-cli",
"version": "0.2.1",
"description": "Your AI workforce. Every user gets an AI manager that runs their team — finance, marketing, engineering, operations — for the cost of API calls.",
"type": "module",
"bin": {
"squads": "dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsup && cp -r templates dist/",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai-workforce",
"workforce",
"autonomous-agents",
"agent-framework",
"ai-automation",
"crewai-alternative",
"autogen-alternative",
"langgraph-alternative",
"multi-agent",
"orchestration",
"ai-agents",
"persistent-memory",
"squads",
"cli",
"claude",
"claude-code",
"anthropic",
"mcp",
"agent-sdk",
"business-automation"
],
"author": "Agents Squads <hello@agents-squads.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agents-squads/squads-cli.git"
},
"bugs": {
"url": "https://github.com/agents-squads/squads-cli/issues"
},
"homepage": "https://agents-squads.com",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"chalk": "^5.3.0",
"chrono-node": "^2.9.0",
"commander": "^12.1.0",
"dotenv": "^17.2.3",
"gray-matter": "^4.0.3",
"inquirer": "^9.2.12",
"minimatch": "^10.2.1",
"open": "^11.0.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.39.2",
"@types/node": "^20.19.27",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"tsup": "^8.0.1",
"typescript": "^5.3.0",
"typescript-eslint": "^8.51.0",
"vitest": "^4.0.16"
}
}