-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.29 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@translated/lara-cli",
"type": "module",
"version": "1.3.1",
"description": "CLI tool for automated i18n file translation using Lara Translate",
"repository": {
"type": "git",
"url": "https://github.com/translated/lara-cli"
},
"main": "./build/index.js",
"keywords": [
"laratranslate",
"lara",
"localization",
"translation",
"ai",
"translate",
"translated"
],
"author": {
"name": "Lara Translate",
"email": "info@laratranslate.com"
},
"license": "ISC",
"packageManager": "pnpm@10.11.1",
"engines": {
"node": ">=20"
},
"bin": {
"lara-cli": "./build/index.js"
},
"files": [
"build",
"!build/__tests__"
],
"dependencies": {
"@babel/parser": "^7.29.2",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0",
"@inquirer/core": "^10.3.2",
"@inquirer/prompts": "^7.10.1",
"@translated/lara": "^1.8.4",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"fast-xml-parser": "^5.5.9",
"flat": "^6.0.1",
"gettext-parser": "^8.0.0",
"glob": "^11.1.0",
"ora": "^8.2.0",
"picomatch": "^4.0.4",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"string-width": "^8.2.0",
"unist-util-visit": "^5.1.0",
"yaml": "^2.8.3",
"zod": "^4.3.6"
},
"imports": {
"#utils/*": "./build/utils/*",
"#modules/*": "./build/modules/*",
"#cli/*": "./build/cli/*",
"#messages/*": "./build/messages/*"
},
"scripts": {
"build": "rm -rf build && npx tsc",
"start": "rm -rf build && npx tsc && node build/index.js",
"lint": "npx eslint src/**/*.ts",
"lint:fix": "npx eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/gettext-parser": "^8.0.0",
"@types/mdast": "^4.0.4",
"@types/node": "^24.12.0",
"@types/picomatch": "^4.0.2",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2"
}
}