forked from native-federation/angular-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.46 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@angular-architects/native-federation",
"version": "22.0.5",
"generators": "./collection.json",
"builders": "./builders.json",
"schematics": "./collection.json",
"license": "MIT",
"author": {
"name": "Native federation team",
"url": "http://www.angulararchitects.io"
},
"peerDependencies": {
"@angular/build": "~22.0.0"
},
"dependencies": {
"@angular-devkit/architect": "^0.2200.0",
"@angular-devkit/core": "~22.0.0",
"@angular-devkit/schematics": "~22.0.0",
"@chialab/esbuild-plugin-commonjs": "^0.19.0",
"@softarc/native-federation": "^4.3.0",
"@softarc/native-federation-orchestrator": "^4.5.0",
"es-module-shims": "^2.8.0",
"esbuild": "^0.28.0",
"mrmime": "^2.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/native-federation/angular-adapter"
},
"ng-update": {
"migrations": "./migration-collection.json"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js",
"default": "./src/index.js"
},
"./config": {
"types": "./src/config.d.ts",
"import": "./src/config.js",
"default": "./src/config.js"
},
"./internal": {
"types": "./src/internal.d.ts",
"import": "./src/internal.js",
"default": "./src/internal.js"
},
"./node-preload": {
"types": "./src/node-preload.d.ts",
"import": "./src/node-preload.js",
"default": "./src/node-preload.js"
}
},
"homepage": "https://github.com/native-federation/angular-adapter",
"type": "module",
"files": [
"src",
"collection.json",
"generators.json",
"builders.json",
"migration-collection.json",
"README.md",
"LICENSE",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && node post-build.mjs",
"lint": "eslint src",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"knip": "knip --no-config-hints",
"test": "vitest"
},
"devDependencies": {
"@angular/build": "~22.0.0",
"@eslint/js": "^9.39.1",
"@nx/devkit": "~22.6.0",
"@schematics/angular": "~22.0.0",
"@types/node": "~24.10.0",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "^9.39.1",
"globals": "^17.0.0",
"jiti": "^2.6.0",
"json5": "^2.2.3",
"knip": "^6.17.1",
"tslib": "^2.3.0",
"typescript": "~6.0.0",
"typescript-eslint": "^8.46.4",
"vite": "^7.0.0",
"vitest": "^4.0.0"
}
}