-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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": "@macrof/loader",
"version": "0.0.1",
"license": "Apache-2.0",
"description": "React MicroFrontend Loader, Typescript, Webpack 5, ModuleFederation",
"author": "FreshTouch",
"repository": {
"type": "git",
"url": "git+https://github.com/FreshTouch/macrof-loader.git"
},
"bugs": {
"url": "https://github.com/FreshTouch/macrof-loader/issues"
},
"homepage": "https://github.com/FreshTouch/macrof-loader",
"keywords": [
"typescript",
"react",
"webpack 5",
"webpack",
"microfrontend-loader",
"microfrontend",
"microfrontends",
"micro frontend",
"modulefederation",
"module federation",
"craco",
"js",
"lazy loading"
],
"main": "./lib/cjs/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"lint:ts": "eslint --ext tsx --ext .ts src",
"lint-fix:ts": "eslint --ext tsx --ext .ts src --fix",
"preversion": "git rev-parse --abbrev-ref HEAD",
"postversion": "git push origin HEAD && git push origin HEAD --follow-tags"
},
"files": [
"/lib"
],
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"reflect-metadata": "0.1.13"
},
"devDependencies": {
"@macrof/tool-kit": "^0.0.1",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"typescript": "4.9.4"
},
"eslintConfig": {
"extends": "react-app"
}
}