Skip to content

Commit 62d9658

Browse files
committed
Fix the typing
1 parent c7b5fee commit 62d9658

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

package/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ cdk.out
99

1010
.DS_Store
1111
*.map
12+
*.tgz
13+
package

package/package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,27 @@
1111
],
1212
"private": false,
1313
"sideEffects": false,
14+
"files": [
15+
"dist",
16+
"README.md"
17+
],
1418
"homepage": "https://github.com/poad/aws-lambda-mcp-server#readme",
1519
"repository": {
1620
"type": "git",
1721
"url": "git+https://github.com/poad/aws-lambda-mcp-server.git"
1822
},
23+
"publishConfig": {
24+
"main": "./dist/index.js",
25+
"typings": "./dist/index.d.ts"
26+
},
1927
"exports": {
2028
".": {
2129
"types": "./dist/index.d.ts",
2230
"default": "./dist/index.js"
2331
}
2432
},
2533
"module": "./dist/index.js",
26-
"types": "dist/index.d.ts",
34+
"types": "./dist/index.d.ts",
2735
"main": "./dist/index.js",
2836
"author": "poad",
2937
"license": "ISC",
@@ -56,4 +64,4 @@
5664
"hono": "^4.10.4",
5765
"zod": "^3.25.76"
5866
}
59-
}
67+
}

0 commit comments

Comments
 (0)