generated from canisminor1990/canisminor-template
-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
103 lines (103 loc) · 2.7 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
94
95
96
97
98
99
100
101
102
103
{
"name": "@lobehub/i18n-cli",
"version": "1.20.3",
"description": "Lobe i18n is a CLI tool that automate translate your i18n localization with AI",
"keywords": [
"ai",
"i18n",
"openai",
"gpt",
"langchain"
],
"homepage": "https://github.jparrowsec.cnlobehub/lobe-cli-toolbox/tree/master/packages/lobe-i18n",
"bugs": {
"url": "https://github.com/lobehub/lobe-cli-toolbox/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/lobehub/lobe-cli-toolbox.git"
},
"license": "MIT",
"author": "LobeHub <[email protected]>",
"sideEffects": false,
"type": "module",
"imports": {
"@": "./src"
},
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"bin": {
"lobe-i18n": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run type-check && pkgroll --minify -p tsconfig.prod.json --env.NODE_ENV=production && npm run shebang",
"dev": "pkgroll -p tsconfig.prod.json --env.NODE_ENV=development --watch",
"link": "npm run build && npm link -f",
"shebang": "lobe-shebang -t ./dist/cli.js",
"start": "node ./dist/cli.js",
"test": "vitest --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@inkjs/ui": "^1.0.0",
"@langchain/core": "^0.3.27",
"@langchain/openai": "^0.3.16",
"@lobehub/cli-ui": "1.10.1",
"chalk": "^5.4.1",
"commander": "^13.0.0",
"conf": "^13.1.0",
"consola": "^3.3.3",
"cosmiconfig": "^9.0.0",
"dirty-json": "^0.9.2",
"dotenv": "^16.4.7",
"fast-deep-equal": "^3.1.3",
"glob": "^11.0.0",
"gpt-tokenizer": "^2.8.1",
"gray-matter": "^4.0.3",
"ink": "^4.4.1",
"json-stable-stringify": "^1.2.1",
"just-diff": "^6.0.2",
"langchain": "^0.3.10",
"lodash-es": "^4.17.21",
"p-map": "^7.0.3",
"pangu": "^4.0.7",
"react": "^18.3.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"swr": "^2.3.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"update-notifier": "^7.3.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@types/json-stable-stringify": "^1.1.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.5",
"@types/unist": "^3.0.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}