@kelceyp/swic 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +196 -0
- package/dist/cli/cli.js +80 -0
- package/dist/server/Server.js +19 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kelceyp/swic",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Story Workflow Integration Controller - MCP server for managing stories, subtasks, and pipelines",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/server/Server.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"swic-mcp": "./dist/server/Server.js",
|
|
9
|
+
"swic": "./dist/cli/cli.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist/",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build-server": "bun run scripts/server/build-dist.ts",
|
|
18
|
+
"build-cli": "bun run scripts/cli/build-dist.ts",
|
|
19
|
+
"build": "bun run scripts/build-all.ts",
|
|
20
|
+
"prepublishOnly": "bun run build",
|
|
21
|
+
"test:e2e": "bash tests/e2e/run-e2e-tests.sh",
|
|
22
|
+
"test:e2e:local": "bash tests/e2e/test-projects/run-e2e-tests.sh",
|
|
23
|
+
"lint": "eslint src scripts archive --ext .ts",
|
|
24
|
+
"lint:fix": "eslint src scripts archive --ext .ts --fix"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@kelceyp/clibuilder": "^0.1.9",
|
|
28
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
29
|
+
"debug": "^4.4.3"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@types/bun": "latest",
|
|
33
|
+
"@types/debug": "^4.1.12",
|
|
34
|
+
"@types/node": "^20.0.0",
|
|
35
|
+
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
|
36
|
+
"@typescript-eslint/parser": "^8.46.2",
|
|
37
|
+
"eslint": "8",
|
|
38
|
+
"typescript": "^5.0.0"
|
|
39
|
+
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"bun": ">=1.0.0"
|
|
42
|
+
},
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/kelceyp/swic.git"
|
|
46
|
+
},
|
|
47
|
+
"author": "Paul Kelcey",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"keywords": [
|
|
50
|
+
"mcp",
|
|
51
|
+
"model-context-protocol",
|
|
52
|
+
"workflow",
|
|
53
|
+
"story-management",
|
|
54
|
+
"pipeline-orchestration",
|
|
55
|
+
"development-workflow",
|
|
56
|
+
"sdlc"
|
|
57
|
+
]
|
|
58
|
+
}
|