-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.55 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.55 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
{
"name": "xlf-sync",
"version": "1.4.1",
"description": "The definitive CLI for synchronizing Angular XLIFF (1.2 & 2.0) locale files. Keep translations in perfect sync with automation, visual dashboards, and CI/CD integration. Zero data loss.",
"type": "module",
"bin": {
"xlf-sync": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "node --enable-source-maps dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --apply ."
},
"repository": {
"type": "git",
"url": "https://github.com/atheodosiou/xlf-sync.git"
},
"bugs": {
"url": "https://github.com/atheodosiou/xlf-sync/issues"
},
"homepage": "https://github.com/atheodosiou/xlf-sync#readme",
"keywords": [
"angular",
"i18n",
"xliff",
"xlf",
"translation",
"sync",
"locale",
"merge",
"ngx-translate",
"automation",
"devops",
"workflow",
"angular-cli",
"localization",
"l10n",
"xliffmerge",
"ng-extract-i18n-merge"
],
"author": "Anastasios Theodosiou",
"license": "MIT",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"fast-glob": "^3.3.3",
"fast-xml-parser": "^5.3.3",
"figlet": "^1.10.0",
"log-symbols": "^7.0.1",
"ora": "^9.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@types/node": "^25.0.10",
"@vitest/coverage-v8": "^4.0.18",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}