translint 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +193 -0
- package/bin/translint.js +3 -0
- package/dist/cli.js +2052 -0
- package/dist/index.d.ts +129 -0
- package/dist/index.js +678 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "translint",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Premium i18n quality checker with CLI, scoring, and HTML report.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "",
|
|
7
|
+
"type": "commonjs",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"bin": {
|
|
10
|
+
"translint": "bin/translint.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"bin",
|
|
14
|
+
"dist",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
17
|
+
],
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=18"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"i18n",
|
|
23
|
+
"l10n",
|
|
24
|
+
"translations",
|
|
25
|
+
"locale",
|
|
26
|
+
"cli",
|
|
27
|
+
"lint",
|
|
28
|
+
"quality",
|
|
29
|
+
"report"
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsup",
|
|
33
|
+
"dev": "tsup --watch",
|
|
34
|
+
"lint": "node ./dist/cli.js check --format json"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"cac": "^6.7.14",
|
|
38
|
+
"chalk": "^4.1.2",
|
|
39
|
+
"fast-glob": "^3.3.2",
|
|
40
|
+
"ts-node": "^10.9.2",
|
|
41
|
+
"typescript": "^5.5.4"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/node": "^20.12.7",
|
|
45
|
+
"tsup": "^8.0.2"
|
|
46
|
+
}
|
|
47
|
+
}
|