@egovernments/digit-ui-module-core 1.9.1-beta.8 → 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/package.json CHANGED
@@ -1,31 +1,53 @@
1
1
  {
2
2
  "name": "@egovernments/digit-ui-module-core",
3
- "version": "1.9.1-beta.8",
3
+ "version": "2.0.0-rc19-01",
4
4
  "license": "MIT",
5
- "main": "dist/index.js",
6
- "module": "dist/index.modern.js",
5
+ "main": "dist/main.js",
6
+ "module": "dist/main.js",
7
7
  "source": "src/Module.js",
8
8
  "files": [
9
9
  "dist"
10
10
  ],
11
11
  "scripts": {
12
- "start": "microbundle-crl watch --no-compress --format modern,cjs",
13
- "build": "microbundle-crl --compress --no-sourcemap --format cjs",
14
- "prepublish": "yarn build"
12
+ "example": "cd example && npm run start",
13
+ "start": "webpack serve --mode=development --config webpack.config.js",
14
+ "start:prod": "NODE_ENV=production webpack serve --config webpack.config.js",
15
+ "build": "NODE_ENV=production webpack --config webpack.config.js",
16
+ "build:dev": "NODE_ENV=development webpack --config webpack.config.js",
17
+ "build:analyze": "NODE_ENV=production webpack --config webpack.config.js --analyze",
18
+ "prepare": "yarn build",
19
+ "publish:components": "npm publish --tag core-webpack-v0.1",
20
+ "predeploy": "cd example && yarn install && yarn run build"
15
21
  },
16
- "dependencies": {
17
- "@egovernments/digit-ui-components": "0.0.2-beta.58",
18
- "@egovernments/digit-ui-react-components": "1.8.13",
22
+ "peerDependencies": {
19
23
  "@tanstack/react-query": "^5.62.16",
20
24
  "react": "19.0.0",
21
25
  "react-dom": "19.0.0",
22
- "react-i18next": "11.16.2",
26
+ "react-router-dom": "6.25.1"
27
+ },
28
+ "dependencies": {
29
+ "@egovernments/digit-ui-components": "2.0.0-rc19-01",
30
+ "@egovernments/digit-ui-react-components": "2.0.0-rc19-01",
31
+ "react-i18next": "15.0.0",
23
32
  "react-redux": "7.2.8",
24
- "react-router-dom": "5.3.0",
33
+ "react-responsive": "10.0.1",
25
34
  "react-tooltip": "4.1.2",
26
- "redux": "4.1.2",
35
+ "redux": "5.0.0",
27
36
  "redux-thunk": "2.4.1"
28
37
  },
38
+ "sideEffects": false,
39
+ "browserslist": {
40
+ "production": [
41
+ ">0.2%",
42
+ "not dead",
43
+ "not op_mini all"
44
+ ],
45
+ "development": [
46
+ "last 1 chrome version",
47
+ "last 1 firefox version",
48
+ "last 1 safari version"
49
+ ]
50
+ },
29
51
  "author": "JaganKumar <jagan.kumar@egov.org.in>",
30
52
  "keywords": [
31
53
  "digit",
@@ -35,7 +57,24 @@
35
57
  "core"
36
58
  ],
37
59
  "devDependencies": {
60
+ "@babel/core": "^7.23.3",
61
+ "@babel/preset-env": "^7.23.3",
62
+ "@babel/preset-react": "^7.23.3",
63
+ "@tanstack/react-query": "^5.62.16",
64
+ "babel-loader": "^9.1.3",
65
+ "babel-plugin-transform-remove-console": "^6.9.4",
66
+ "core-js": "^3.33.0",
67
+ "cross-env": "7.0.3",
68
+ "css-loader": "^6.8.1",
69
+ "lint-staged": "12.3.7",
70
+ "react": "19.0.0",
71
+ "react-dom": "19.0.0",
72
+ "react-router-dom": "6.25.1",
38
73
  "sass": "^1.83.4",
39
- "sass-loader": "^16.0.4"
74
+ "sass-loader": "^16.0.4",
75
+ "style-loader": "^3.3.3",
76
+ "webpack": "^5.97.1",
77
+ "webpack-cli": "^5.1.4",
78
+ "webpack-dev-server": "^4.15.1"
40
79
  }
41
80
  }