-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.3 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.3 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
{
"name": "@nimblework/sk-cli",
"version": "0.1.6",
"description": "SwiftKanban CLI and MCP server — interact with SwiftKanban from the command line or Claude AI",
"mcpName": "io.github.deenaik/swiftkanban",
"repository": {
"type": "git",
"url": "https://github.com/digiteinfotech/sk-cli.git"
},
"type": "module",
"bin": {
"sk": "dist/sk.js",
"sk-mcp": "dist/sk-mcp.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsx bin/sk.ts",
"dev:mcp": "tsx bin/sk-mcp.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "SK_INTEGRATION_TEST=1 vitest run test/integration",
"lint": "eslint src/ bin/ test/",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=22"
},
"keywords": [
"swiftkanban",
"kanban",
"cli",
"mcp",
"claude",
"ai",
"model-context-protocol"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"msw": "^2.12.14",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}