@octanejs/mcp-server 0.2.14 → 0.2.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@octanejs/mcp-server",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=22.22.2"
package/src/bridge.js CHANGED
@@ -6,6 +6,8 @@ import { join, resolve } from 'node:path';
6
6
  // expected union from the workspace manifests, so publishing a new binding
7
7
  // without registering it in either catalog fails the mcp-server tests.
8
8
  export const KNOWN_BINDINGS = {
9
+ '@gsap/react': '@octanejs/gsap',
10
+ animejs: '@octanejs/animejs',
9
11
  'usehooks-ts': '@octanejs/usehooks-ts',
10
12
  zustand: '@octanejs/zustand',
11
13
  valtio: '@octanejs/valtio',
@@ -14,6 +16,7 @@ export const KNOWN_BINDINGS = {
14
16
  'mobx-react-lite': '@octanejs/mobx',
15
17
  'mobx-react': '@octanejs/mobx',
16
18
  '@apollo/client': '@octanejs/apollo-client',
19
+ '@solana/react': '@octanejs/solana-react',
17
20
  '@tanstack/ai-react': '@octanejs/tanstack-ai',
18
21
  '@tanstack/react-devtools': '@octanejs/tanstack-devtools',
19
22
  '@tanstack/react-form': '@octanejs/tanstack-form',
@@ -119,8 +122,10 @@ export const KNOWN_BINDINGS = {
119
122
  '@react-rxjs/utils': '@octanejs/rxjs',
120
123
  '@testing-library/react': '@octanejs/testing-library',
121
124
  'react-i18next': '@octanejs/i18next',
125
+ '@inertiajs/react': '@octanejs/inertia',
122
126
  '@mdx-js/react': '@octanejs/mdx',
123
127
  'dexie-react-hooks': '@octanejs/dexie',
128
+ '@livestore/react': '@octanejs/livestore',
124
129
  };
125
130
 
126
131
  // Octane-specific ecosystem packages that have no React import to rewrite.
@@ -143,6 +148,7 @@ export const KNOWN_BINDING_PACKAGE_DIRS = new Set(
143
148
 
144
149
  export const KNOWN_VANILLA_CORES = {
145
150
  '@apollo/client': '@apollo/client',
151
+ '@solana/react': '@solana/kit',
146
152
  '@tanstack/react-query': '@tanstack/query-core',
147
153
  wagmi: '@wagmi/core',
148
154
  '@tanstack/react-table': '@tanstack/table-core',
@@ -160,6 +166,7 @@ export const KNOWN_VANILLA_CORES = {
160
166
  jotai: 'jotai/vanilla',
161
167
  '@lexical/react': 'lexical',
162
168
  '@tiptap/react': '@tiptap/core',
169
+ '@livestore/react': '@livestore/livestore',
163
170
  };
164
171
 
165
172
  export const REACT_API_MAP = {
package/src/index.js CHANGED
@@ -50,6 +50,7 @@ export const BENCHMARK_SUITES = [
50
50
  'svg-dashboard',
51
51
  'dbmon',
52
52
  'recursive-context',
53
+ 'spa-navigation',
53
54
  'signal-favoring',
54
55
  'news',
55
56
  'hydration-interactivity',
@@ -82,6 +83,8 @@ export const BENCHMARK_SUITES = [
82
83
  'lynx-list',
83
84
  'universal-leaf-update',
84
85
  'lynx-render',
86
+ 'lynx-table',
87
+ 'lynx-table-web',
85
88
  'lynx-bundle-size',
86
89
  'codegen-size',
87
90
  'compiler-throughput',