@infograb/gitlab-openapi-mcp 1.0.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/.bunfig.toml +3 -0
- package/.changelogrc.js +1 -0
- package/.commitlintrc.js +1 -0
- package/.dockerignore +3 -0
- package/.editorconfig +16 -0
- package/.eslintignore +30 -0
- package/.eslintrc.js +1 -0
- package/.gitlab-ci.yml +117 -0
- package/.prettierignore +61 -0
- package/.prettierrc.js +1 -0
- package/.releaserc.js +1 -0
- package/.remarkrc.js +1 -0
- package/.stylelintrc.js +1 -0
- package/CHANGELOG.md +230 -0
- package/Dockerfile +17 -0
- package/LICENSE +21 -0
- package/README.md +51 -0
- package/bin/start.js +20 -0
- package/docs/.dumirc.ts +56 -0
- package/docs/docs/changelog.md +9 -0
- package/docs/docs/data.ts +7 -0
- package/docs/docs/demo.tsx +7 -0
- package/docs/docs/index.md +7 -0
- package/docs/package.json +14 -0
- package/docs/tsconfig.json +29 -0
- package/main.js +31 -0
- package/next-env.d.ts +5 -0
- package/next.config.mjs +32 -0
- package/package.json +92 -0
- package/public/manifest-dev.json +27 -0
- package/public/manifest.json +27 -0
- package/public/openapi.json +5303 -0
- package/renovate.json +13 -0
- package/src/pages/api/gateway.ts +13 -0
- package/tsconfig.json +30 -0
- package/vitest.config.ts +8 -0
package/renovate.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
3
|
+
"automerge": false,
|
|
4
|
+
"dependencyDashboard": true,
|
|
5
|
+
"ignoreDeps": [],
|
|
6
|
+
"labels": ["dependencies"],
|
|
7
|
+
"postUpdateOptions": ["yarnDedupeHighest"],
|
|
8
|
+
"prConcurrentLimit": 30,
|
|
9
|
+
"prHourlyLimit": 0,
|
|
10
|
+
"rebaseWhen": "conflicted",
|
|
11
|
+
"schedule": "on sunday before 6:00am",
|
|
12
|
+
"timezone": "UTC"
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export const config = {
|
|
2
|
+
runtime: 'edge',
|
|
3
|
+
};
|
|
4
|
+
|
|
5
|
+
export default async (req: Request) => {
|
|
6
|
+
if (process.env.NODE_ENV === 'development') {
|
|
7
|
+
const { createGatewayOnEdgeRuntime } = await import('@lobehub/chat-plugins-gateway');
|
|
8
|
+
|
|
9
|
+
return createGatewayOnEdgeRuntime()(req);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
return new Response('gateway');
|
|
13
|
+
};
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"module": "CommonJS",
|
|
4
|
+
"target": "ES5",
|
|
5
|
+
"lib": ["dom", "dom.iterable", "esnext"],
|
|
6
|
+
"sourceMap": true,
|
|
7
|
+
"skipDefaultLibCheck": true,
|
|
8
|
+
"jsx": "preserve",
|
|
9
|
+
"baseUrl": ".",
|
|
10
|
+
"allowSyntheticDefaultImports": true,
|
|
11
|
+
"moduleResolution": "node",
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"noImplicitReturns": true,
|
|
14
|
+
"noUnusedLocals": true,
|
|
15
|
+
"resolveJsonModule": true,
|
|
16
|
+
"skipLibCheck": true,
|
|
17
|
+
"strict": true,
|
|
18
|
+
"paths": {
|
|
19
|
+
"@/*": ["src/*"]
|
|
20
|
+
},
|
|
21
|
+
"types": ["vitest/globals"],
|
|
22
|
+
"allowJs": true,
|
|
23
|
+
"noEmit": true,
|
|
24
|
+
"incremental": true,
|
|
25
|
+
"esModuleInterop": true,
|
|
26
|
+
"isolatedModules": true
|
|
27
|
+
},
|
|
28
|
+
"exclude": ["node_modules"],
|
|
29
|
+
"include": ["src", "next-env.d.ts", "*.ts"]
|
|
30
|
+
}
|