Skip to content

Commit

Permalink
Merge pull request #94 from nekomeowww/dev/exclude-tests
Browse files Browse the repository at this point in the history
chore: satisfies npm-pkg-lint & publint
  • Loading branch information
jspahrsummers authored Dec 17, 2024
2 parents 422a535 + 70ee403 commit 3164da6
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
3 changes: 3 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 13 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,17 @@
"homepage": "https://modelcontextprotocol.io",
"bugs": "https://github.com/modelcontextprotocol/typescript-sdk/issues",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/modelcontextprotocol/typescript-sdk.git"
},
"engines": {
"node": ">=18"
},
"keywords": [
"modelcontextprotocol",
"mcp"
],
"exports": {
"./*": "./dist/*"
},
Expand All @@ -23,8 +32,8 @@
"dist"
],
"scripts": {
"build": "tsc",
"prepack": "tsc",
"build": "tsc -p tsconfig.prod.json",
"prepack": "tsc -p tsconfig.prod.json",
"lint": "eslint src/",
"test": "jest",
"start": "npm run server",
Expand Down
6 changes: 6 additions & 0 deletions tsconfig.prod.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "./tsconfig.json",
"exclude": [
"**/*.test.ts",
]
}

0 comments on commit 3164da6

Please sign in to comment.