@ppcantidio/openapi-mcp-server 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -0
  2. package/package.json +17 -5
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  var __create = Object.create;
2
3
  var __getProtoOf = Object.getPrototypeOf;
3
4
  var __defProp = Object.defineProperty;
package/package.json CHANGED
@@ -1,21 +1,29 @@
1
1
  {
2
2
  "name": "@ppcantidio/openapi-mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "MCP server for querying OpenAPI documentation conversationally",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "openapi-mcp-server": "./dist/index.js"
8
8
  },
9
- "files": ["dist"],
9
+ "files": [
10
+ "dist"
11
+ ],
10
12
  "scripts": {
11
13
  "dev": "bun run src/index.ts",
12
- "build": "bun build ./src/index.ts --outdir ./dist --target node --format esm",
14
+ "build": "bun build ./src/index.ts --outdir ./dist --target node --format esm --banner '#!/usr/bin/env node'",
13
15
  "test": "bun test",
14
16
  "lint": "bunx biome check .",
15
17
  "lint:fix": "bunx biome check --write .",
16
18
  "prepublishOnly": "bun run build"
17
19
  },
18
- "keywords": ["mcp", "openapi", "swagger", "documentation", "ai"],
20
+ "keywords": [
21
+ "mcp",
22
+ "openapi",
23
+ "swagger",
24
+ "documentation",
25
+ "ai"
26
+ ],
19
27
  "license": "MIT",
20
28
  "repository": {
21
29
  "type": "git",
@@ -29,8 +37,12 @@
29
37
  },
30
38
  "devDependencies": {
31
39
  "@biomejs/biome": "^1.9.4",
40
+ "@changesets/changelog-github": "^0.6.0",
41
+ "@changesets/cli": "^2.30.0",
32
42
  "bun-types": "^1.3.12",
33
43
  "openapi-types": "=12.1.3"
34
44
  },
35
- "trustedDependencies": ["@biomejs/biome"]
45
+ "trustedDependencies": [
46
+ "@biomejs/biome"
47
+ ]
36
48
  }