forked from bartholomej/ngx-translate-extract
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 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
{
"name": "@vendure/ngx-translate-extract",
"version": "10.1.3",
"description": "Extract strings from projects using ngx-translate",
"author": "Kim Biesbjerg <kim@biesbjerg.com>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "node tools/build.js",
"build:dev": "npm run clean && tsc",
"watch": "npm run clean && tsc --watch",
"clean": "tsc --build --clean",
"test": "vitest",
"lint": "oxlint"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^6.1.4",
"braces": "^3.0.3",
"flat": "^6.0.1",
"gettext-parser": "^9.0.0",
"glob": "^13.0.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@angular/compiler": "^21.1.1",
"@types/braces": "^3.0.5",
"@types/gettext-parser": "^9.0.0",
"@types/node": "^20.19.30",
"@types/yargs": "^17.0.35",
"oxlint": "^1.41.0",
"prettier": "^3.8.1",
"typescript": "~5.9.2",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@angular/compiler": ">=20.0.0",
"typescript": ">=5.8.0"
},
"bin": {
"ngx-translate-extract": "cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/vendurehq/ngx-translate-extract.git"
},
"keywords": [
"angular",
"ionic",
"ngx-translate",
"extract",
"extractor",
"translate",
"translation",
"i18n",
"gettext"
],
"bugs": {
"url": "https://github.com/vendurehq/ngx-translate-extract/issues"
},
"homepage": "https://github.com/vendurehq/ngx-translate-extract",
"engines": {
"node": ">=20.19.0",
"npm": ">=10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}