@remixhq/claude-plugin 0.1.18 → 0.1.19

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.
@@ -861,7 +861,7 @@ async function markPendingTurnConsultedMemory(sessionId) {
861
861
  // package.json
862
862
  var package_default = {
863
863
  name: "@remixhq/claude-plugin",
864
- version: "0.1.18",
864
+ version: "0.1.19",
865
865
  description: "Claude Code plugin for Remix collaboration workflows",
866
866
  homepage: "https://github.com/RemixDotOne/remix-claude-plugin",
867
867
  license: "MIT",
@@ -884,16 +884,27 @@ var package_default = {
884
884
  "hooks",
885
885
  "agents"
886
886
  ],
887
+ exports: {
888
+ ".": {
889
+ types: "./dist/index.d.ts",
890
+ import: "./dist/index.js"
891
+ },
892
+ "./historical": {
893
+ types: "./dist/historical.d.ts",
894
+ import: "./dist/historical.js"
895
+ }
896
+ },
887
897
  scripts: {
888
898
  build: "tsup",
889
899
  postbuild: `node -e "const fs=require('node:fs'); for (const p of ['dist/mcp-server.cjs','dist/hook-pre-git.cjs','dist/hook-user-prompt.cjs','dist/hook-post-collab.cjs','dist/hook-stop-collab.cjs']) fs.chmodSync(p, 0o755);"`,
890
900
  dev: "tsx src/mcp-server.ts",
891
901
  typecheck: "tsc -p tsconfig.json --noEmit",
902
+ test: "node --import tsx --test src/**/*.test.ts",
892
903
  prepack: "npm run build"
893
904
  },
894
905
  dependencies: {
895
- "@remixhq/core": "^0.1.13",
896
- "@remixhq/mcp": "^0.1.13"
906
+ "@remixhq/core": "^0.1.14",
907
+ "@remixhq/mcp": "^0.1.14"
897
908
  },
898
909
  devDependencies: {
899
910
  "@types/node": "^25.4.0",