-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.91 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.91 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@generaltranslation/mcp",
"version": "1.0.4",
"description": "General Translation MCP Server",
"main": "dist/index.js",
"type": "module",
"bin": {
"gt-mcp-server": "dist/index.js"
},
"files": [
"dist",
"CHANGELOG.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.14.2",
"@types/jest": "^29.5.14",
"@types/node": ">=20.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.19.0",
"prettier": "^3.4.2",
"tsx": "^4.16.5",
"typescript": "^5.7.3"
},
"scripts": {
"patch": "pnpm version patch",
"transpile": "tsc",
"build": "pnpm run transpile",
"build:clean": "sh ../../scripts/clean.sh && pnpm lint && pnpm run build",
"build:release": "pnpm run build:clean",
"dev": "pnpm run build && node dist/index.js",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "pnpm run build:clean && pnpm publish --access public",
"release:alpha": "pnpm run build:clean && pnpm publish --access public --tag alpha",
"release:beta": "pnpm run build:clean && pnpm publish --access public --tag beta",
"release:latest": "pnpm run build:clean && pnpm publish --access public --tag latest",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/generaltranslation/gt.git"
},
"author": "General Translation, Inc.",
"license": "FSL-1.1-ALv2",
"bugs": {
"url": "https://github.com/generaltranslation/gt/issues"
},
"homepage": "https://generaltranslation.com/",
"compilerOptions": {},
"keywords": [
"react",
"translation",
"internationalization",
"localization",
"i18n",
"l10n",
"mcp"
]
}