mcp-emtrafesa 1.0.1 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "mcp-emtrafesa",
3
3
  "description": "A Model Context Protocol (MCP) server for accessing Emtrafesa bus transportation services in Peru",
4
- "version": "1.0.1",
5
- "module": "index.ts",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
4
+ "version": "1.1.1",
5
+ "module": "src/index.ts",
6
+ "main": "dist/src/index.js",
7
+ "types": "dist/src/index.d.ts",
8
8
  "type": "module",
9
9
  "bin": {
10
- "mcp-emtrafesa": "dist/index.js"
10
+ "mcp-emtrafesa": "dist/src/index.js"
11
11
  },
12
12
  "private": false,
13
13
  "keywords": [
@@ -34,27 +34,28 @@
34
34
  "url": "git+https://github.com/georgegiosue/mcp-emtrafesa"
35
35
  },
36
36
  "files": [
37
- "dist/*.js",
38
- "dist/*.d.ts"
37
+ "dist/src/*.js",
38
+ "dist/src/*.d.ts"
39
39
  ],
40
40
  "scripts": {
41
- "build": "bun build --target=node ./index.ts --outfile=dist/index.js && bun run build:declaration",
41
+ "build": "bun build --target=node ./src/index.ts --outfile=dist/src/index.js && bun run build:declaration",
42
42
  "build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
43
43
  "format": "bunx biome check --write",
44
44
  "prepare": "husky",
45
- "inspect": "bunx @modelcontextprotocol/inspector bun index.ts"
45
+ "prepublishOnly": "bun run build",
46
+ "inspect": "bunx @modelcontextprotocol/inspector bun src/index.ts"
46
47
  },
47
48
  "devDependencies": {
48
- "@biomejs/biome": "2.1.1",
49
- "@types/bun": "1.2.18",
49
+ "@biomejs/biome": "2.3.10",
50
+ "@types/bun": "1.3.5",
50
51
  "husky": "9.1.7"
51
52
  },
52
53
  "peerDependencies": {
53
- "typescript": "^5.8.3"
54
+ "typescript": "5.8.3"
54
55
  },
55
56
  "dependencies": {
56
- "@modelcontextprotocol/sdk": "1.15.1",
57
- "cheerio": "1.1.0",
57
+ "@modelcontextprotocol/sdk": "1.25.1",
58
+ "cheerio": "1.1.2",
58
59
  "zod": "3.25.76"
59
60
  }
60
61
  }
File without changes