@nethru/kit 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +19 -4
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nethru/kit",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "A React component library by Nethru",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
|
+
"homepage": ".",
|
|
6
7
|
"files": [
|
|
7
8
|
"/dist"
|
|
8
9
|
],
|
|
9
10
|
"scripts": {
|
|
10
|
-
"
|
|
11
|
+
"dev": "FAST_REFRESH=false PORT=3002 react-scripts start",
|
|
12
|
+
"build": "rm -rf dist && mkdir dist && babel src/lib -d dist --copy-files",
|
|
11
13
|
"prepublishOnly": "npm run build"
|
|
12
14
|
},
|
|
13
15
|
"babel": {
|
|
@@ -35,15 +37,28 @@
|
|
|
35
37
|
"devDependencies": {
|
|
36
38
|
"@babel/cli": "^7.23.4",
|
|
37
39
|
"@babel/core": "^7.23.0",
|
|
38
|
-
"@babel/preset-react": "^7.23.0"
|
|
40
|
+
"@babel/preset-react": "^7.23.0",
|
|
41
|
+
"react-scripts": "5.0.1"
|
|
39
42
|
},
|
|
40
43
|
"dependencies": {
|
|
41
44
|
"@mui/icons-material": "^6.5.0",
|
|
42
45
|
"@mui/material": "^6.0.1",
|
|
43
|
-
"@nethru/kit": "^1.1.
|
|
46
|
+
"@nethru/kit": "^1.1.1",
|
|
44
47
|
"@nethru/ui": "^2.1.45",
|
|
45
48
|
"highcharts": "^11.3.0",
|
|
46
49
|
"highcharts-react-official": "^3.2.1",
|
|
47
50
|
"react-markdown": "^10.1.0"
|
|
51
|
+
},
|
|
52
|
+
"browserslist": {
|
|
53
|
+
"production": [
|
|
54
|
+
">0.2%",
|
|
55
|
+
"not dead",
|
|
56
|
+
"not op_mini all"
|
|
57
|
+
],
|
|
58
|
+
"development": [
|
|
59
|
+
"last 1 chrome version",
|
|
60
|
+
"last 1 firefox version",
|
|
61
|
+
"last 1 safari version"
|
|
62
|
+
]
|
|
48
63
|
}
|
|
49
64
|
}
|