-
Notifications
You must be signed in to change notification settings - Fork 0
Fix the typing #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,3 +9,5 @@ cdk.out | |
|
|
||
| .DS_Store | ||
| *.map | ||
| *.tgz | ||
| package | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -11,19 +11,27 @@ | |||||||||||||||||||
| ], | ||||||||||||||||||||
| "private": false, | ||||||||||||||||||||
| "sideEffects": false, | ||||||||||||||||||||
| "files": [ | ||||||||||||||||||||
| "dist", | ||||||||||||||||||||
| "README.md" | ||||||||||||||||||||
| ], | ||||||||||||||||||||
|
Comment on lines
+14
to
+17
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. パッケージ公開時に含まれるファイルを明示的に指定する
Suggested change
|
||||||||||||||||||||
| "homepage": "https://github.com/poad/aws-lambda-mcp-server#readme", | ||||||||||||||||||||
| "repository": { | ||||||||||||||||||||
| "type": "git", | ||||||||||||||||||||
| "url": "git+https://github.com/poad/aws-lambda-mcp-server.git" | ||||||||||||||||||||
| }, | ||||||||||||||||||||
| "publishConfig": { | ||||||||||||||||||||
| "main": "./dist/index.js", | ||||||||||||||||||||
| "typings": "./dist/index.d.ts" | ||||||||||||||||||||
| }, | ||||||||||||||||||||
|
Comment on lines
+23
to
+26
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. パッケージの公開設定が適切に改善されています。
Suggested change
|
||||||||||||||||||||
| "exports": { | ||||||||||||||||||||
| ".": { | ||||||||||||||||||||
| "types": "./dist/index.d.ts", | ||||||||||||||||||||
| "default": "./dist/index.js" | ||||||||||||||||||||
| } | ||||||||||||||||||||
| }, | ||||||||||||||||||||
| "module": "./dist/index.js", | ||||||||||||||||||||
| "types": "dist/index.d.ts", | ||||||||||||||||||||
| "types": "./dist/index.d.ts", | ||||||||||||||||||||
| "main": "./dist/index.js", | ||||||||||||||||||||
| "author": "poad", | ||||||||||||||||||||
| "license": "ISC", | ||||||||||||||||||||
|
|
@@ -56,4 +64,4 @@ | |||||||||||||||||||
| "hono": "^4.10.4", | ||||||||||||||||||||
| "zod": "^3.25.76" | ||||||||||||||||||||
| } | ||||||||||||||||||||
| } | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ファイル末尾の改行が削除されています。JSONファイルでは必須ではありませんが、多くのエディタやlintツールが末尾の改行を期待するため、一貫性のために追加することを推奨します。
Suggested change
|
||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.gitignoreへの*.tgzとpackageの追加は適切です。これらはnpmパッケージのビルド成果物やテスト用のパッケージファイルであり、バージョン管理から除外すべきファイルです。パッケージ開発時の一時的なファイルが誤ってコミットされることを防げます。