@octanejs/mcp-server 0.2.13 → 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 +1 -1
- package/src/bridge.js +7 -0
- package/src/index.js +4 -0
package/package.json
CHANGED
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
|
@@ -47,8 +47,10 @@ export const BENCHMARK_SUITES = [
|
|
|
47
47
|
'weather-app-lighthouse',
|
|
48
48
|
'chat-stream',
|
|
49
49
|
'streamdown-hosted',
|
|
50
|
+
'svg-dashboard',
|
|
50
51
|
'dbmon',
|
|
51
52
|
'recursive-context',
|
|
53
|
+
'spa-navigation',
|
|
52
54
|
'signal-favoring',
|
|
53
55
|
'news',
|
|
54
56
|
'hydration-interactivity',
|
|
@@ -81,6 +83,8 @@ export const BENCHMARK_SUITES = [
|
|
|
81
83
|
'lynx-list',
|
|
82
84
|
'universal-leaf-update',
|
|
83
85
|
'lynx-render',
|
|
86
|
+
'lynx-table',
|
|
87
|
+
'lynx-table-web',
|
|
84
88
|
'lynx-bundle-size',
|
|
85
89
|
'codegen-size',
|
|
86
90
|
'compiler-throughput',
|