forked from playcanvas/markdown-translator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 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
{
"name": "markdown-translator",
"version": "1.0.0",
"description": "A command line tool to translate markdown and MDX files using Google Gemini AI",
"type": "module",
"main": "index.js",
"bin": {
"md-translate": "bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"demo": "node bin/cli.js translate -i examples/StarRocksTest.md -l zh -s en",
"setup": "node bin/cli.js setup",
"languages": "node bin/cli.js languages",
"lint": "eslint bin/**/*.js src/**/*.js",
"test": "rm -f examples/StarRocksTest_zh.md && node bin/cli.js translate -i examples/StarRocksTest.md -l zh -s en"
},
"keywords": [
"markdown",
"docusaurus",
"translation",
"gemini",
"ai",
"cli"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@playcanvas/eslint-config": "2.1.0",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"eslint": "^9.31.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.3",
"globals": "^16.3.0",
"ora": "^8.2.0",
"path": "^0.12.7",
"remark-frontmatter": "^5.0.0",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
},
"publishConfig": {
"@StarRocks:registry": "https://npm.pkg.github.com"
},
"engines": {
"node": ">=16.0.0"
}
}