-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.11 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
{
"name": "ollama-i18n",
"version": "1.1.3",
"description": "CLI tool for automated translation of JSON locale files (i18n) using Ollama",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ollama-i18n": "./dist/index.js"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "vitest",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"dev": "tsx src/index.ts",
"build": "tsup"
},
"keywords": [
"i18n",
"translation",
"cli",
"ollama",
"localization"
],
"author": "Fabio Kapsahili",
"license": "MIT",
"dependencies": {
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"ollama": "^0.5.11",
"yoctocolors": "^2.1.1",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.10.2",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}