-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.54 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.54 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
{
"name": "@drkraft/basecamp-cli",
"version": "2.0.0",
"description": "Complete CLI and MCP server for Basecamp 4 - projects, todos, messages, kanban, schedules, and more",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"SKILL.md"
],
"publishConfig": {
"access": "public"
},
"bin": {
"basecamp": "dist/index.js",
"basecamp-mcp": "dist/mcp.js"
},
"type": "module",
"scripts": {
"build": "tsup",
"dev": "tsup src/index.ts --format esm --watch",
"mcp": "bun run src/mcp.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"basecamp",
"cli",
"mcp",
"ai",
"project-management",
"todos",
"37signals"
],
"homepage": "https://github.com/drkraft/basecamp-cli#readme",
"bugs": "https://github.com/drkraft/basecamp-cli/issues",
"author": "drkraft",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/drkraft/basecamp-cli.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"conf": "^13.0.1",
"got": "^14.4.5",
"open": "^10.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^4.0.18",
"msw": "^2.12.7",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
}
}