@egovernments/digit-ui-libraries 1.9.1-beta.7 → 2.0.0-rc19-01
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/dist/main.js +3 -0
- package/dist/main.js.LICENSE.txt +90 -0
- package/dist/main.js.map +1 -0
- package/package.json +52 -20
- package/dist/index.js +0 -1
package/package.json
CHANGED
|
@@ -1,46 +1,78 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@egovernments/digit-ui-libraries",
|
|
3
|
-
"version": "
|
|
4
|
-
"main": "dist/
|
|
5
|
-
"module": "dist/
|
|
3
|
+
"version": "2.0.0-rc19-01",
|
|
4
|
+
"main": "dist/main.js",
|
|
5
|
+
"module": "dist/main.js",
|
|
6
6
|
"source": "src/index.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
11
|
"scripts": {
|
|
12
|
-
"
|
|
13
|
-
"start": "
|
|
14
|
-
"prepublish": "yarn build"
|
|
12
|
+
"start": "webpack serve --mode=development --open --hot",
|
|
13
|
+
"start:prod": "webpack serve --mode=production --open",
|
|
14
|
+
"prepublish": "yarn build",
|
|
15
|
+
"example": "cd example && npm run start",
|
|
16
|
+
"build": "NODE_OPTIONS='--openssl-legacy-provider' webpack --mode=production --config webpack.config.js",
|
|
17
|
+
"build:dev": "NODE_OPTIONS='--openssl-legacy-provider' webpack --mode=development --config webpack.config.js",
|
|
18
|
+
"build:analyze": "NODE_OPTIONS='--openssl-legacy-provider' webpack --mode=production --analyze --config webpack.config.js",
|
|
19
|
+
"prepare": "yarn build",
|
|
20
|
+
"predeploy": "cd example && yarn install && yarn run build"
|
|
15
21
|
},
|
|
16
22
|
"peerDependencies": {
|
|
17
|
-
"react": "19.0.0"
|
|
23
|
+
"react": "19.0.0",
|
|
24
|
+
"react-dom": "19.0.0",
|
|
25
|
+
"react-router-dom": "6.25.1",
|
|
26
|
+
"@tanstack/react-query": "^5.62.16"
|
|
18
27
|
},
|
|
19
28
|
"devDependencies": {
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"react-dom": "19.0.0",
|
|
23
|
-
"react-scripts": "^4.0.1",
|
|
29
|
+
"react": "^19.0.0",
|
|
30
|
+
"react-dom": "^19.0.0",
|
|
24
31
|
"sass": "^1.83.4",
|
|
25
|
-
"sass-loader": "^16.0.4"
|
|
32
|
+
"sass-loader": "^16.0.4",
|
|
33
|
+
"@babel/core": "^7.23.3",
|
|
34
|
+
"@babel/preset-env": "^7.23.3",
|
|
35
|
+
"@babel/preset-react": "^7.23.3",
|
|
36
|
+
"@babel/plugin-transform-optional-chaining": "^7.23.4",
|
|
37
|
+
"@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4",
|
|
38
|
+
"babel-plugin-transform-remove-console": "^6.9.4",
|
|
39
|
+
"babel-loader": "8.0.0",
|
|
40
|
+
"core-js": "^3.38.1",
|
|
41
|
+
"cross-env": "7.0.3",
|
|
42
|
+
"lint-staged": "12.3.7",
|
|
43
|
+
"webpack": "^5.97.1",
|
|
44
|
+
"webpack-cli": "^4.10.0",
|
|
45
|
+
"@tanstack/react-query": "^5.62.16",
|
|
46
|
+
"react-router-dom": "6.25.1"
|
|
26
47
|
},
|
|
27
48
|
"dependencies": {
|
|
28
|
-
"@tanstack/react-query": "^5.62.16",
|
|
29
49
|
"axios": "0.27.2",
|
|
30
|
-
"babel-preset-react": "6.24.1",
|
|
31
50
|
"date-fns": "2.28.0",
|
|
32
51
|
"dom-to-image": "2.6.0",
|
|
33
52
|
"html2canvas": "1.4.1",
|
|
34
|
-
"
|
|
53
|
+
"jsonpath": "^1.1.1",
|
|
54
|
+
"lodash": "^4.17.21",
|
|
55
|
+
"prop-types": "^15.8.1",
|
|
56
|
+
"i18next": "23.2.3",
|
|
35
57
|
"i18next-react-postprocessor": "3.0.7",
|
|
36
58
|
"pdfmake": "0.1.72",
|
|
37
|
-
"react": "
|
|
38
|
-
"react-
|
|
39
|
-
"
|
|
40
|
-
"react-router-dom": "5.3.0",
|
|
41
|
-
"redux": "4.1.2",
|
|
59
|
+
"react-i18next": "15.0.0",
|
|
60
|
+
"react-redux": "9.2.0",
|
|
61
|
+
"redux": "5.0.0",
|
|
42
62
|
"xlsx": "0.17.5"
|
|
43
63
|
},
|
|
64
|
+
"browserslist": {
|
|
65
|
+
"production": [
|
|
66
|
+
">0.2%",
|
|
67
|
+
"not dead",
|
|
68
|
+
"not op_mini all"
|
|
69
|
+
],
|
|
70
|
+
"development": [
|
|
71
|
+
"last 1 chrome version",
|
|
72
|
+
"last 1 firefox version",
|
|
73
|
+
"last 1 safari version"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
44
76
|
"author": "JaganKumar <jagan.kumar@egov.org.in>",
|
|
45
77
|
"keywords": [
|
|
46
78
|
"digit",
|