-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@mfukushim/map-traveler-mcp",
"version": "0.0.67",
"type": "module",
"bin": {
"map-traveler-mcp": "build/esm/mapTraveler.js"
},
"files": [
"build/esm/",
"assets",
"drizzle/"
],
"keywords": [
"MCP",
"GoogleMap",
"ImageGeneration",
"Claude",
"Effect",
"Traveler",
"TravelerEmulation",
"Bluesky"
],
"packageManager": "pnpm@9.10.0",
"license": "MIT",
"description": "Virtual traveler library for MCP",
"repository": {
"type": "git",
"url": "https://github.com/mfukushim/map-traveler-mcp.git"
},
"scripts": {
"codegen": "build-utils prepare-v2",
"build": "pnpm build-esm",
"build:npm": "npm run build-esm",
"build-esm": "tsc -b tsconfig.build.json",
"build-annotate": "babel build/esm --plugins annotate-pure-calls --out-dir build/esm --source-maps",
"check": "tsc -b tsconfig.json",
"test": "vitest",
"coverage": "vitest --coverage",
"inspector": "pnpm build && cmd /c \"set CLIENT_PORT=5174 && npx @modelcontextprotocol/inspector build/esm/index.js\""
},
"dependencies": {
"@anthropic-ai/sdk": "^0.33.1",
"@atproto/api": "^0.13.27",
"@effect/platform": "^0.73.1",
"@effect/platform-node": "^0.69.1",
"@effect/sql": "^0.26.1",
"@effect/sql-sqlite-node": "^0.27.1",
"@libsql/client": "^0.14.0",
"@modelcontextprotocol/sdk": "^1.1.1",
"@pixai-art/client": "^0.4.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.3",
"effect": "^3.12.4",
"form-data": "^4.0.1",
"geolib": "^3.3.4",
"jimp": "^1.6.0",
"sharp": "^0.33.5",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@effect/build-utils": "^0.7.8",
"@effect/language-service": "^0.2.0",
"@effect/vitest": "^0.17.0",
"@types/node": "^22.10.7",
"@types/ws": "^8.5.13",
"babel-plugin-annotate-pure-calls": "^0.5.0",
"drizzle-kit": "^0.30.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"effect": {
"generateExports": {
"include": [
"**/*.ts"
]
},
"generateIndex": {
"include": [
"**/*.ts"
]
}
},
"volta": {
"node": "22.14.0"
}
}