mcp-emtrafesa 1.1.0 → 1.1.2
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/README.es.md +96 -89
- package/README.md +96 -89
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +57686 -0
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.1.
|
|
4
|
+
"version": "1.1.2",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"types": "dist/src/index.d.ts",
|
|
@@ -38,10 +38,11 @@
|
|
|
38
38
|
"dist/src/*.d.ts"
|
|
39
39
|
],
|
|
40
40
|
"scripts": {
|
|
41
|
-
"build": "bun build --target=node ./src/index.ts --
|
|
41
|
+
"build": "bun build --target=node ./src/index.ts --outdir=dist/src && 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
|
+
"prepublishOnly": "bun run build",
|
|
45
46
|
"inspect": "bunx @modelcontextprotocol/inspector bun src/index.ts"
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|