-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.21 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
67
68
69
70
71
72
73
{
"name": "locadex",
"version": "1.0.112",
"description": "An AI agent for internationalization",
"main": "dist/index.js",
"type": "module",
"bin": {
"locadex": "dist/cli.js"
},
"files": [
"dist",
"CHANGELOG.md"
],
"dependencies": {
"@clack/prompts": "^1.0.0-alpha.1",
"chalk": "^5.4.1",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"gt": "workspace:*",
"open": "^10.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/micromatch": "^4.0.9",
"@types/node": ">=20.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.4.2",
"tsx": "^4.16.5",
"typescript": "^5.7.3"
},
"scripts": {
"patch": "pnpm version patch",
"build": "tsc",
"build:release": "pnpm run build:clean",
"build:clean": "sh ../../scripts/clean.sh && pnpm run build",
"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:release && pnpm publish --access public",
"release:alpha": "pnpm run build:release && pnpm publish --access public --tag alpha",
"release:beta": "pnpm run build:release && pnpm publish --access public --tag beta",
"release:latest": "pnpm run build:release && pnpm publish --access public --tag latest",
"test": "vitest run",
"test:watch": "vitest",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org general-translation --project locadex ./dist && sentry-cli sourcemaps upload --org general-translation --project locadex ./dist --release=${npm_package_version}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/generaltranslation/gt.git"
},
"author": "General Translation, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/generaltranslation/gt/issues"
},
"homepage": "https://generaltranslation.com/",
"compilerOptions": {},
"keywords": [
"react",
"translation",
"internationalization",
"localization",
"i18n",
"l10n",
"mcp",
"ai",
"agent"
]
}