We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f16aab commit b821bbdCopy full SHA for b821bbd
package.json
@@ -2,10 +2,10 @@
2
"name": "argocd-mcp",
3
"version": "0.0.1",
4
"description": "ArgoCD MCP Server",
5
- "main": "dist/argocd-mcp.js",
+ "main": "dist/index.js",
6
"type": "module",
7
"bin": {
8
- "argocd-mcp": "./dist/argocd-mcp.js"
+ "argocd-mcp": "./dist/index.js"
9
},
10
"files": [
11
"dist",
tsup.config.ts
@@ -1,10 +1,7 @@
1
import { defineConfig } from "tsup"
-import packageJSON from "./package.json" with { type: "json" };
export default defineConfig({
- entry: {
- [packageJSON.name]: "src/index.ts",
- },
+ entry: ["src/index.ts"],
splitting: false,
sourcemap: true,
clean: true,
0 commit comments