-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 839 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 839 Bytes
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
{
"name": "@yuskraft/remote-module-loader",
"version": "1.1.0",
"description": "A React hook for loading remote modules in Module Federation",
"main": "dist/remote-module-loader.umd.js",
"module": "dist/remote-module-loader.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "vite build",
"prepare": "npm run build"
},
"author": "Nurlan Yusifli",
"keywords": [
"react",
"module-federation",
"webpack",
"remote-modules",
"typescript"
],
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@types/node": "^22.15.18",
"@types/react": "^18.2.0",
"@vitejs/plugin-react": "^4.4.1",
"typescript": "^5.0.0",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-dts": "^4.5.3"
},
"license": "MIT"
}