@cyanheads/mcp-ts-core 0.9.21 → 0.10.1

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 (46) hide show
  1. package/AGENTS.md +2 -2
  2. package/CLAUDE.md +2 -2
  3. package/README.md +1 -1
  4. package/changelog/0.10.x/0.10.0.md +19 -0
  5. package/changelog/0.10.x/0.10.1.md +28 -0
  6. package/dist/config/index.d.ts +6 -6
  7. package/dist/config/index.d.ts.map +1 -1
  8. package/dist/config/index.js +17 -19
  9. package/dist/config/index.js.map +1 -1
  10. package/dist/config/parseEnvConfig.d.ts +4 -0
  11. package/dist/config/parseEnvConfig.d.ts.map +1 -1
  12. package/dist/config/parseEnvConfig.js +4 -0
  13. package/dist/config/parseEnvConfig.js.map +1 -1
  14. package/dist/services/canvas/core/sqlGate.d.ts +3 -2
  15. package/dist/services/canvas/core/sqlGate.d.ts.map +1 -1
  16. package/dist/services/canvas/core/sqlGate.js +32 -4
  17. package/dist/services/canvas/core/sqlGate.js.map +1 -1
  18. package/dist/services/canvas/providers/duckdb/DuckdbProvider.d.ts.map +1 -1
  19. package/dist/services/canvas/providers/duckdb/DuckdbProvider.js +37 -14
  20. package/dist/services/canvas/providers/duckdb/DuckdbProvider.js.map +1 -1
  21. package/dist/utils/index.d.ts +1 -0
  22. package/dist/utils/index.d.ts.map +1 -1
  23. package/dist/utils/index.js +2 -0
  24. package/dist/utils/index.js.map +1 -1
  25. package/dist/utils/overflow/outlineOnOverflow.d.ts +119 -0
  26. package/dist/utils/overflow/outlineOnOverflow.d.ts.map +1 -0
  27. package/dist/utils/overflow/outlineOnOverflow.js +109 -0
  28. package/dist/utils/overflow/outlineOnOverflow.js.map +1 -0
  29. package/dist/utils/scheduling/scheduler.d.ts.map +1 -1
  30. package/dist/utils/scheduling/scheduler.js +4 -1
  31. package/dist/utils/scheduling/scheduler.js.map +1 -1
  32. package/package.json +8 -8
  33. package/scripts/check-framework-antipatterns.ts +32 -9
  34. package/scripts/lint-packaging.ts +125 -3
  35. package/skills/add-tool/SKILL.md +3 -1
  36. package/skills/api-config/SKILL.md +5 -1
  37. package/skills/design-mcp-server/SKILL.md +2 -1
  38. package/skills/release-and-publish/SKILL.md +2 -1
  39. package/skills/techniques/SKILL.md +32 -0
  40. package/skills/techniques/references/outline-on-overflow.md +124 -0
  41. package/templates/AGENTS.md +5 -1
  42. package/templates/CLAUDE.md +5 -1
  43. package/templates/Dockerfile +3 -0
  44. package/templates/_.mcpbignore +10 -10
  45. package/templates/manifest.json +1 -0
  46. package/templates/package.json +12 -13
@@ -19,21 +19,21 @@
19
19
  "server.json"
20
20
  ],
21
21
  "scripts": {
22
- "build": "tsx scripts/build.ts",
23
- "rebuild": "tsx scripts/clean.ts && tsx scripts/build.ts",
24
- "clean": "tsx scripts/clean.ts",
25
- "devcheck": "tsx scripts/devcheck.ts",
22
+ "build": "bun run scripts/build.ts",
23
+ "rebuild": "bun run scripts/clean.ts && bun run scripts/build.ts",
24
+ "clean": "bun run scripts/clean.ts",
25
+ "devcheck": "bun run scripts/devcheck.ts",
26
26
  "audit:refresh": "rm -f bun.lock && bun install && bun audit",
27
- "tree": "tsx scripts/tree.ts",
28
- "list-skills": "tsx scripts/list-skills.ts",
27
+ "tree": "bun run scripts/tree.ts",
28
+ "list-skills": "bun run scripts/list-skills.ts",
29
29
  "format": "biome check --write .",
30
30
  "format:unsafe": "biome check --write --unsafe .",
31
- "lint:mcp": "tsx scripts/lint-mcp.ts",
32
- "lint:packaging": "tsx scripts/lint-packaging.ts",
33
- "bundle": "npm run build && npx -y @anthropic-ai/mcpb pack . dist/{{PACKAGE_NAME}}.mcpb",
34
- "changelog:build": "tsx scripts/build-changelog.ts",
35
- "changelog:check": "tsx scripts/build-changelog.ts --check",
36
- "release:github": "tsx scripts/release-github.ts",
31
+ "lint:mcp": "bun run scripts/lint-mcp.ts",
32
+ "lint:packaging": "bun run scripts/lint-packaging.ts",
33
+ "bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/{{PACKAGE_NAME}}.mcpb",
34
+ "changelog:build": "bun run scripts/build-changelog.ts",
35
+ "changelog:check": "bun run scripts/build-changelog.ts --check",
36
+ "release:github": "bun run scripts/release-github.ts",
37
37
  "test": "vitest run",
38
38
  "start": "node dist/index.js",
39
39
  "start:stdio": "MCP_TRANSPORT_TYPE=stdio node dist/index.js",
@@ -67,7 +67,6 @@
67
67
  "depcheck": "^1.4.7",
68
68
  "ignore": "^7.0.5",
69
69
  "tsc-alias": "^1.8.16",
70
- "tsx": "^4.19.0",
71
70
  "typescript": "^5.9.3",
72
71
  "vitest": "^4.1.0"
73
72
  }