-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.96 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.96 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
{
"name": "@teamday/cli",
"version": "0.1.0",
"description": "TeamDay CLI - Manage AI agents, spaces, and tasks from the command line",
"type": "module",
"bin": {
"teamday": "./dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "bun run build",
"start": "bun run bin/teamday.ts",
"dev": "bun --watch bin/teamday.ts",
"test": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:integration:local": "TEAMDAY_API_URL=http://localhost:3000 vitest run tests/integration",
"test:integration:cc": "TEAMDAY_API_URL=https://cc.teamday.ai vitest run tests/integration",
"test:characters": "TEAMDAY_API_URL=http://localhost:3000 vitest run tests/integration/characters.test.ts",
"test:characters:cc": "TEAMDAY_API_URL=https://cc.teamday.ai vitest run tests/integration/characters.test.ts"
},
"keywords": [
"cli",
"teamday",
"ai",
"agents",
"automation",
"claude",
"ai-agents"
],
"author": "TeamDay",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TeamDay-AI/cli"
},
"homepage": "https://teamday.ai",
"bugs": {
"url": "https://github.com/TeamDay-AI/cli/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-highlight": "^2.1.11",
"cli-table3": "^0.6.5",
"commander": "^12.0.0",
"eventsource-parser": "^3.0.0",
"inquirer": "^11.0.2",
"js-yaml": "^4.1.0",
"marked": "^17.0.3",
"marked-terminal": "^7.3.0",
"open": "^10.0.3",
"ora": "^8.0.1",
"zod": "^3.25.0"
},
"optionalDependencies": {
"keytar": "^7.9.0"
},
"devDependencies": {
"@types/bun": "^1.3.3",
"@types/inquirer": "^9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"typescript": "^5",
"vitest": "^3.0.0"
}
}