@kanbodev/mcp 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/dist/index.js +5561 -4451
  2. package/package.json +4 -4
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@kanbodev/mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MCP (Model Context Protocol) server for Kanbo - AI-native project management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
- "kanbo-mcp": "./dist/index.js"
8
+ "kanbodev-mcp": "./dist/index.js"
9
9
  },
10
10
  "scripts": {
11
11
  "dev": "bun run --watch src/index.ts",
12
12
  "dev:http": "TRANSPORT=http bun run --watch src/index.ts",
13
- "build": "bun build src/index.ts --outdir dist --target bun --format esm",
14
- "build:node": "bun build src/index.ts --outdir dist --target node --format esm",
13
+ "build": "bun build src/index.ts --outdir dist --target node --format esm",
14
+ "build:bun": "bun build src/index.ts --outdir dist --target bun --format esm",
15
15
  "start": "bun run dist/index.js",
16
16
  "start:http": "TRANSPORT=http bun run dist/index.js",
17
17
  "typecheck": "tsc --noEmit",