We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdab913 commit a7fc66cCopy full SHA for a7fc66c
3 files changed
package.json
@@ -1,13 +1,28 @@
1
{
2
"name": "mcp-openapi",
3
- "version": "0.1.0",
4
- "private": true,
+ "version": "0.4.0",
5
"type": "module",
6
"description": "OpenAPI to MCP server bridge",
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "bin": {
15
+ "mcp-openapi": "./dist/server.js"
16
17
+ "files": [
18
+ "dist",
19
+ "README.md"
20
+ ],
21
"scripts": {
22
"build": "tsc -p tsconfig.json",
23
"dev": "tsx src/server.ts",
24
"start": "node dist/server.js",
25
+ "prepare": "npm run build",
26
"check": "tsc -p tsconfig.json --noEmit",
27
"test": "tsx --test test/*.test.ts",
28
"smoke": "npm run build && tsx scripts/smoke.ts"
0 commit comments