forked from tpcint/l10n-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.32 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.32 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
{
"name": "l10n-tools",
"version": "5.0.3",
"description": "Localization tools",
"type": "module",
"engines": {
"node": ">=22.x"
},
"scripts": {
"tsc": "tsc --noEmit",
"lint": "eslint",
"test": "node --no-warnings=ExperimentalWarning --loader ts-node/esm --test **/*.test.ts",
"build": "swc src -d dist -s --strip-leading-paths",
"watch": "swc -w src -d dist -s --strip-leading-paths",
"schema": "ts-json-schema-generator -p 'src/**/*.ts,@types/*.ts' -e all -t L10nConf --no-top-ref -o l10nrc.schema.json",
"prepare": "npm run build",
"prepublishOnly": "npm run tsc && npm run lint && npm test"
},
"author": "Eungkyu Song <eungkyu@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tpcint/l10n-tools.git"
},
"bin": {
"l10n": "dist/l10n.js"
},
"dependencies": {
"ajv": "^8.17.1",
"command-exists": "^1.2.9",
"commander": "^14.0.1",
"cosmiconfig": "^9.0.0",
"domhandler": "^5.0.3",
"domutils": "^3.2.2",
"fast-xml-parser": "^5.3.0",
"gettext-parser": "^8.0.0",
"glob": "^11.0.3",
"htmlparser2": "^10.0.0",
"lodash-es": "^4.17.21",
"npmlog": "^7.0.1",
"p-queue": "^9.0.0",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"@googleapis/drive": "^18.0.0",
"@googleapis/sheets": "^12.0.0",
"@lokalise/node-api": "^15.3.1",
"google-auth-library": "^10.4.1",
"he": "^1.2.0",
"http-shutdown": "^1.2.2",
"i18n-strings-files": "^2.0.0",
"open": "^10.2.0",
"php-parser": "^3.2.5",
"plist": "^3.1.0"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@faker-js/faker": "^10.1.0",
"@stylistic/eslint-plugin": "^5.4.0",
"@swc/cli": "^0.7.8",
"@swc/core": "^1.13.5",
"@types/command-exists": "^1.2.3",
"@types/gettext-parser": "^8.0.0",
"@types/he": "^1.2.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.18.10",
"@types/npmlog": "^7.0.0",
"@types/plist": "^3.0.5",
"@typescript-eslint/parser": "^8.46.1",
"chokidar": "^4.0.3",
"eslint": "^9.37.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-import-x": "^4.16.1",
"ts-json-schema-generator": "^2.4.0",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.46.1"
}
}