-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
66 lines (66 loc) · 1.83 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
{
"name": "hel-micro",
"version": "4.9.11",
"description": "A module federation SDK which is unrelated to tool chain for module consumer.",
"keywords": [
"hel",
"hel-micro",
"module federation",
"module federation sdk"
],
"bugs": "https://github.com/tnfe/hel/issues",
"repository": {
"type": "git",
"url": "https://github.com/tnfe/hel.git",
"directory": "packages/hel-micro"
},
"license": "MIT",
"author": {
"name": "fantasticsoul"
},
"main": "lib/index.js",
"unpkg": "dist/hel-micro.min.js",
"module": "es/index.js",
"types": "src/index.ts",
"files": [
"dist",
"lib",
"es",
"src",
"README.md",
"tsconfig.json"
],
"scripts": {
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:commonjs": "rollup -c --environment BUILD_ENV:commonjs",
"build:es": "rollup -c --environment BUILD_ENV:es",
"build:umd": "rollup -c --environment BUILD_ENV:development",
"build:umd:min": "rollup -c --environment BUILD_ENV:production",
"lint": "eslint ./src --ext ts,tsx",
"lint_fix": "eslint ./src --ext ts,tsx --fix",
"lint_test": "eslint ./test --ext ts,tsx",
"lint_test_fix": "eslint ./test --ext ts,tsx --fix",
"test": "pnpm --filter=hel-micro-core run build:commonjs && jest"
},
"dependencies": {
"hel-html-parser": "^1.1.2",
"hel-micro-core": "^4.9.2",
"hel-types": "^4.3.3"
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@types/qs": "^6.9.7",
"babel-cli": "^6.26.0",
"fake-indexeddb": "4.0.1",
"qs": "^6.11.0",
"rollup": "^2.23.0"
},
"peerDependencies": {
"hel-html-parser": "^1.1.2",
"hel-micro-core": "^4.9.2",
"hel-types": "^4.3.3"
},
"bundleDependencies": [],
"deprecated": false
}