|
1 | 1 | { |
2 | | - "name": "mcp-server", |
| 2 | + "name": "@mcpdotdirect/create-mcp-server", |
3 | 3 | "module": "src/index.ts", |
4 | 4 | "type": "module", |
5 | 5 | "version": "1.0.0", |
6 | | - "description": "Model Context Protocol (MCP) Server", |
7 | | - "private": true, |
| 6 | + "description": "Model Context Protocol (MCP) Server Template Generator", |
| 7 | + "private": false, |
| 8 | + "main": "build/index.js", |
| 9 | + "bin": { |
| 10 | + "create-mcp-server": "build/index.js" |
| 11 | + }, |
| 12 | + "files": [ |
| 13 | + "build", |
| 14 | + "LICENSE", |
| 15 | + "README.md" |
| 16 | + ], |
8 | 17 | "scripts": { |
9 | 18 | "start": "bun run src/index.ts", |
10 | 19 | "build": "bun build src/index.ts --outdir build --target node", |
11 | 20 | "build:http": "bun build src/server/http-server.ts --outdir build --target node", |
12 | 21 | "dev": "bun --watch src/index.ts", |
13 | 22 | "start:http": "bun run src/server/http-server.ts", |
14 | | - "dev:http": "bun --watch src/server/http-server.ts" |
| 23 | + "dev:http": "bun --watch src/server/http-server.ts", |
| 24 | + "prepublishOnly": "bun run build" |
| 25 | + }, |
| 26 | + "repository": { |
| 27 | + "type": "git", |
| 28 | + "url": "git+https://github.com/mcpdotdirect/template-mcp-server.git" |
| 29 | + }, |
| 30 | + "publishConfig": { |
| 31 | + "access": "public" |
| 32 | + }, |
| 33 | + "keywords": [ |
| 34 | + "mcp", |
| 35 | + "model-context-protocol", |
| 36 | + "ai", |
| 37 | + "template", |
| 38 | + "llm", |
| 39 | + "generator" |
| 40 | + ], |
| 41 | + "author": "mcpdotdirect", |
| 42 | + "license": "MIT", |
| 43 | + "bugs": { |
| 44 | + "url": "https://github.com/mcpdotdirect/template-mcp-server/issues" |
15 | 45 | }, |
| 46 | + "homepage": "https://github.com/mcpdotdirect/template-mcp-server#readme", |
16 | 47 | "devDependencies": { |
17 | 48 | "@types/bun": "latest", |
18 | 49 | "@types/cors": "^2.8.17", |
|
0 commit comments