-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 KB
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
{
"name": "@simplelocalize/simplelocalize-mcp",
"version": "0.4.0",
"description": "MCP Server for SimpleLocalize",
"license": "Apache-2.0",
"repository": "https://github.com/simplelocalize/simplelocalize-mcp-server",
"main": "build/index.js",
"type": "module",
"bin": {
"simplelocalize": "./build/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"dev": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src"
},
"files": [
"build"
],
"keywords": [
"mcp",
"modelcontextprotocol",
"simplelocalize"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"zod": "^3.24.2",
"axios": "^1.6.0"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/node": "^22.13.12",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript-eslint": "^8.27.0"
}
}