-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
112 lines (112 loc) · 2.91 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-imported-component",
"version": "6.5.4",
"description": "I will import your component, and help to handle it",
"main": "dist/es5/entrypoints/index.js",
"jsnext:main": "dist/es2015/entrypoints/index.js",
"module": "dist/es2015/entrypoints/index.js",
"module:es2019": "dist/es2019/entrypoints/index.js",
"types": "dist/es5/entrypoints/index.d.ts",
"sideEffects": false,
"scripts": {
"build:ci": "lib-builder build && yarn size",
"build": "lib-builder build && yarn size && yarn size:report",
"test": "jest",
"prepublish": "yarn build && yarn changelog",
"lint": "lib-builder lint",
"dev": "lib-builder dev",
"test:ci": "jest --runInBand --coverage",
"release": "yarn build && yarn test",
"format": "lib-builder format",
"size": "npx size-limit",
"size:report": "npx size-limit --json > .size.json",
"update": "lib-builder update",
"docz:dev": "docz dev",
"docz:build": "docz build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:rewrite": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theKashey/react-hot-component-loader.git"
},
"bin": {
"imported-components": "./bin/imported-components"
},
"keywords": [
"react-hot-loader",
"loader",
"import",
"async",
"ssr",
"code splitting",
"hmr"
],
"peerDependencies": {
"@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0",
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"author": "theKashey <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theKashey/react-hot-component-loader/issues"
},
"homepage": "https://github.com/theKashey/react-hot-component-loader#readme",
"devDependencies": {
"@theuiteam/lib-builder": "^0.1.4",
"@size-limit/preset-small-lib": "^4.5.1",
"@babel/core": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.3.1",
"@babel/plugin-syntax-dynamic-import": "^7.5.5",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-tester": "^7.0.1"
},
"dependencies": {
"babel-plugin-macros": "^2.6.1",
"crc-32": "^1.2.0",
"detect-node-es": "^1.0.0",
"scan-directory": "^2.0.0",
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"files": [
"bin",
"dist",
"boot",
"server",
"macro",
"babel.js",
"wrapper.js"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
}
}