Skip to content

Commit e35b1ba

Browse files
committed
feat: add info wrt npm
1 parent b5d4327 commit e35b1ba

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules/
2-
build/
2+
build/
3+
mcp-open-library-*.tgz

package.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
{
22
"name": "mcp-open-library",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "MCP server for the Open Library",
5-
"private": true,
5+
"private": false,
6+
"keywords": ["mcp", "open-library", "books", "library", "api", "server"],
7+
"author": "Ben Smith",
8+
"license": "MIT",
9+
"homepage": "https://github.com/8enSmith/mcp-open-library#readme",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/8enSmith/mcp-open-library.git"
13+
},
14+
"bugs": {
15+
"url": "https://github.com/8enSmith/mcp-open-library/issues"
16+
},
617
"type": "module",
718
"bin": {
819
"open-library-server": "./build/index.js"
@@ -19,7 +30,8 @@
1930
"format": "prettier --write src/**/*.ts",
2031
"lint": "eslint src --ext .ts",
2132
"lint:fix": "eslint src --ext .ts --fix",
22-
"test:precommit": "vitest run"
33+
"test:precommit": "vitest run",
34+
"prepublishOnly": "npm run test:precommit && npm run build"
2335
},
2436
"dependencies": {
2537
"@modelcontextprotocol/sdk": "^1.16.0",

0 commit comments

Comments
 (0)