@swatcha/mcp-server 0.1.0 → 0.2.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.
package/tsconfig.app.json DELETED
@@ -1,16 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- "lib": ["ESNext", "DOM", "DOM.Iterable"],
5
- "module": "ESNext",
6
- "moduleResolution": "bundler",
7
- "resolveJsonModule": true,
8
- "isolatedModules": true,
9
- "verbatimModuleSyntax": true,
10
- "noEmit": true,
11
- "strict": true,
12
- "skipLibCheck": true,
13
- "jsx": "react-jsx"
14
- },
15
- "include": ["src/apps/**/*"]
16
- }
package/tsconfig.json DELETED
@@ -1,18 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2022",
4
- "module": "NodeNext",
5
- "moduleResolution": "NodeNext",
6
- "outDir": "./dist",
7
- "rootDir": "./src",
8
- "declaration": true,
9
- "declarationMap": true,
10
- "sourceMap": true,
11
- "strict": true,
12
- "esModuleInterop": true,
13
- "skipLibCheck": true,
14
- "forceConsistentCasingInFileNames": true
15
- },
16
- "include": ["src/**/*"],
17
- "exclude": ["node_modules", "dist", "src/apps"]
18
- }
package/vite.config.ts DELETED
@@ -1,16 +0,0 @@
1
- import { defineConfig } from 'vite';
2
- import react from '@vitejs/plugin-react';
3
- import { viteSingleFile } from 'vite-plugin-singlefile';
4
-
5
- const INPUT = process.env.INPUT;
6
- if (!INPUT) throw new Error('INPUT environment variable not set');
7
-
8
- export default defineConfig({
9
- plugins: [react(), viteSingleFile()],
10
- build: {
11
- sourcemap: process.env.NODE_ENV === 'development' ? 'inline' : undefined,
12
- rollupOptions: { input: INPUT },
13
- outDir: 'dist/apps',
14
- emptyOutDir: false,
15
- },
16
- });