@euqns/nudge-mcp 0.13.0 → 0.15.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 +37 -0
- package/dist/ci-workflows.js +266 -0
- package/dist/ci-workflows.js.map +1 -0
- package/dist/ci-workflows.test.js +44 -0
- package/dist/ci-workflows.test.js.map +1 -0
- package/dist/engines/claude.js +3 -0
- package/dist/engines/claude.js.map +1 -1
- package/dist/engines/codex.js +4 -2
- package/dist/engines/codex.js.map +1 -1
- package/dist/engines/types.js.map +1 -1
- package/dist/index.js +100 -2
- package/dist/index.js.map +1 -1
- package/dist/runner.js +206 -172
- package/dist/runner.js.map +1 -1
- package/dist/runner.test.js +21 -0
- package/dist/runner.test.js.map +1 -0
- package/dist/version.js +3 -3
- package/dist/version.js.map +1 -1
- package/package.json +4 -2
package/dist/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA,8DAA8D;AAC9D,EAAE;AACF,8EAA8E;AAC9E,+EAA+E;AAC/E,wEAAwE;AACxE
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA,8DAA8D;AAC9D,EAAE;AACF,8EAA8E;AAC9E,+EAA+E;AAC/E,wEAAwE;AACxE,2EAA2E;AAC3E,oDAAoD;AACpD,MAAM,CAAC,MAAM,iBAAiB,GAAG,QAAQ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@euqns/nudge-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Model Context Protocol server for the Nudge board (the in-house Trello).",
|
|
6
6
|
"bin": {
|
|
@@ -20,7 +20,9 @@
|
|
|
20
20
|
"build": "tsc -p .",
|
|
21
21
|
"start": "node dist/index.js",
|
|
22
22
|
"dev": "tsx src/index.ts",
|
|
23
|
-
"test": "tsx --test src
|
|
23
|
+
"test": "tsx --test src/*.test.ts",
|
|
24
|
+
"bump": "node scripts/bump-version.mjs",
|
|
25
|
+
"mcp:bump": "node scripts/bump-version.mjs",
|
|
24
26
|
"gen:convex": "npm run build && node scripts/gen-convex-tooldefs.mjs",
|
|
25
27
|
"gen:convex:check": "npm run build && node scripts/gen-convex-tooldefs.mjs --check",
|
|
26
28
|
"prepublishOnly": "npm run build"
|