-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
{
"name": "@angular/ssr",
"version": "19.2.0-next.0+sha-d3648f2",
"description": "Angular server side rendering utilities",
"license": "MIT",
"homepage": "https://github.com/angular/angular-cli",
"keywords": [
"angular",
"ssr",
"universal"
],
"ng-add": {
"save": "dependencies"
},
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/common": "^19.0.0 || ^19.1.0-next.0",
"@angular/core": "^19.0.0 || ^19.1.0-next.0",
"@angular/platform-server": "^19.0.0 || ^19.1.0-next.0",
"@angular/router": "^19.0.0 || ^19.1.0-next.0"
},
"peerDependenciesMeta": {
"@angular/platform-server": {
"optional": true
}
},
"devDependencies": {
"@angular/common": "19.1.1",
"@angular/compiler": "19.1.1",
"@angular/core": "19.1.1",
"@angular/platform-browser": "19.1.1",
"@angular/platform-server": "19.1.1",
"@angular/router": "19.1.1",
"@bazel/runfiles": "^6.0.0"
},
"sideEffects": false,
"schematics": "./schematics/collection.json",
"repository": {
"type": "git",
"url": "https://github.com/angular/angular-cli.git"
},
"module": "./fesm2022/ssr.mjs",
"typings": "./index.d.ts",
"type": "module",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./index.d.ts",
"default": "./fesm2022/ssr.mjs"
},
"./node": {
"types": "./node/index.d.ts",
"default": "./fesm2022/node.mjs"
}
}
}