-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·76 lines (76 loc) · 1.91 KB
/
package.json
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
{
"name": "@angular/localize",
"version": "19.1.0-next.0+sha-0f1c718",
"description": "Angular - library for localizing messages",
"bin": {
"localize-translate": "./tools/bundles/src/translate/cli.js",
"localize-extract": "./tools/bundles/src/extract/cli.js",
"localize-migrate": "./tools/bundles/src/migrate/cli.js"
},
"exports": {
"./tools": {
"types": "./tools/index.d.ts",
"default": "./tools/bundles/index.js"
},
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./index.d.ts",
"default": "./fesm2022/localize.mjs"
},
"./init": {
"types": "./init/index.d.ts",
"default": "./fesm2022/init.mjs"
}
},
"author": "angular",
"license": "MIT",
"engines": {
"node": "^18.19.1 || ^20.11.1 || >=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/angular.git"
},
"schematics": "./schematics/collection.json",
"ng-update": {
"packageGroup": [
"@angular/core",
"@angular/bazel",
"@angular/common",
"@angular/compiler",
"@angular/compiler-cli",
"@angular/animations",
"@angular/elements",
"@angular/platform-browser",
"@angular/platform-browser-dynamic",
"@angular/forms",
"@angular/platform-server",
"@angular/upgrade",
"@angular/router",
"@angular/language-service",
"@angular/localize",
"@angular/service-worker"
]
},
"ng-add": {
"save": "devDependencies"
},
"sideEffects": [
"./fesm2022/init.mjs"
],
"dependencies": {
"@babel/core": "7.26.0",
"@types/babel__core": "7.20.5",
"fast-glob": "3.3.2",
"yargs": "^17.2.1"
},
"peerDependencies": {
"@angular/compiler": "19.1.0-next.0+sha-0f1c718",
"@angular/compiler-cli": "19.1.0-next.0+sha-0f1c718"
},
"module": "./fesm2022/localize.mjs",
"typings": "./index.d.ts",
"type": "module"
}