@tap-payments/os-micro-frontend-shared 0.1.175-test.3 → 0.1.176
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 +166 -166
package/package.json
CHANGED
|
@@ -1,166 +1,166 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@tap-payments/os-micro-frontend-shared",
|
|
3
|
-
"description": "Shared components and utilities for Tap Payments micro frontends",
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"testVersion":
|
|
6
|
-
"type": "module",
|
|
7
|
-
"main": "build/index.js",
|
|
8
|
-
"module": "build/index.js",
|
|
9
|
-
"types": "build/index.d.ts",
|
|
10
|
-
"exports": {
|
|
11
|
-
"./package.json": "./package.json",
|
|
12
|
-
".": {
|
|
13
|
-
"types": "./build/index.d.ts",
|
|
14
|
-
"import": "./build/index.js",
|
|
15
|
-
"require": "./build/index.js"
|
|
16
|
-
},
|
|
17
|
-
"./constants": {
|
|
18
|
-
"types": "./build/constants/index.d.ts",
|
|
19
|
-
"import": "./build/constants/index.js",
|
|
20
|
-
"require": "./build/constants/index.js"
|
|
21
|
-
},
|
|
22
|
-
"./components": {
|
|
23
|
-
"types": "./build/components/index.d.ts",
|
|
24
|
-
"import": "./build/components/index.js",
|
|
25
|
-
"require": "./build/components/index.js"
|
|
26
|
-
},
|
|
27
|
-
"./components/*": {
|
|
28
|
-
"types": "./build/components/*/index.d.ts",
|
|
29
|
-
"import": "./build/components/*/index.js",
|
|
30
|
-
"require": "./build/components/*/index.js"
|
|
31
|
-
},
|
|
32
|
-
"./hooks": {
|
|
33
|
-
"types": "./build/hooks/index.d.ts",
|
|
34
|
-
"import": "./build/hooks/index.js",
|
|
35
|
-
"require": "./build/hooks/index.js"
|
|
36
|
-
},
|
|
37
|
-
"./utils": {
|
|
38
|
-
"types": "./build/utils/index.d.ts",
|
|
39
|
-
"import": "./build/utils/index.js",
|
|
40
|
-
"require": "./build/utils/index.js"
|
|
41
|
-
},
|
|
42
|
-
"./theme": {
|
|
43
|
-
"types": "./build/theme/index.d.ts",
|
|
44
|
-
"import": "./build/theme/index.js",
|
|
45
|
-
"require": "./build/theme/index.js"
|
|
46
|
-
},
|
|
47
|
-
"./types": {
|
|
48
|
-
"types": "./build/types/index.d.ts",
|
|
49
|
-
"import": "./build/types/index.js",
|
|
50
|
-
"require": "./build/types/index.js"
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
"license": "MIT",
|
|
54
|
-
"author": {
|
|
55
|
-
"name": "Ahmed Sharkawy",
|
|
56
|
-
"email": "a.elsharkawy@tap.company"
|
|
57
|
-
},
|
|
58
|
-
"files": [
|
|
59
|
-
"build",
|
|
60
|
-
"readme.md"
|
|
61
|
-
],
|
|
62
|
-
"scripts": {
|
|
63
|
-
"ts:build": "rm -rf build && tsc -p tsconfig.npm.json && tsc-alias -p tsconfig.npm.json",
|
|
64
|
-
"push:local": "yarn ts:build && yalc publish --push",
|
|
65
|
-
"push": "npm run ts:build && npm publish --access public",
|
|
66
|
-
"push:test": "node scripts/increment-test-version.cjs && npm run ts:build && npm publish --access public --tag test && node scripts/restore-version.cjs",
|
|
67
|
-
"dev": "vite",
|
|
68
|
-
"build": "tsc -b && vite build ",
|
|
69
|
-
"prettier": "prettier --list-different \"src/**/*.{md,mdx,ts,js,tsx,jsx,json}\"",
|
|
70
|
-
"prettier:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md,css,json}\"",
|
|
71
|
-
"lint": "eslint . --color",
|
|
72
|
-
"lint:fix": "eslint src --fix --color",
|
|
73
|
-
"preview": "vite preview",
|
|
74
|
-
"prepare": "husky"
|
|
75
|
-
},
|
|
76
|
-
"dependencies": {
|
|
77
|
-
"@emotion/react": "^11.11.0",
|
|
78
|
-
"@emotion/styled": "^11.11.0",
|
|
79
|
-
"@hookform/resolvers": "^3.3.1",
|
|
80
|
-
"@mui/material": "^5.12.3",
|
|
81
|
-
"@uiw/react-json-view": "^2.0.0-alpha.16",
|
|
82
|
-
"axios": "^1.4.0",
|
|
83
|
-
"color": "^5.0.0",
|
|
84
|
-
"dayjs": "^1.11.8",
|
|
85
|
-
"framer-motion": "10.11.0",
|
|
86
|
-
"i18next": "^22.4.15",
|
|
87
|
-
"memoize-one": "^6.0.0",
|
|
88
|
-
"re-resizable": "^6.9.9",
|
|
89
|
-
"react": "^18.2.0",
|
|
90
|
-
"react-colorful": "^5.6.1",
|
|
91
|
-
"react-currency-input-field": "^3.6.11",
|
|
92
|
-
"react-dom": "^18.2.0",
|
|
93
|
-
"react-draggable": "^4.4.6",
|
|
94
|
-
"react-dropzone": "^14.2.3",
|
|
95
|
-
"react-hook-form": "^7.45.4",
|
|
96
|
-
"react-hot-toast": "^2.4.1",
|
|
97
|
-
"react-i18next": "^12.2.2",
|
|
98
|
-
"react-lazy-load-image-component": "^1.6.3",
|
|
99
|
-
"react-multi-date-picker": "^4.1.2",
|
|
100
|
-
"react-router-dom": "^7.7.0",
|
|
101
|
-
"react-virtualized-auto-sizer": "^1.0.20",
|
|
102
|
-
"react-window": "^1.8.9",
|
|
103
|
-
"react-window-infinite-loader": "^1.0.9",
|
|
104
|
-
"react18-input-otp": "^1.1.4",
|
|
105
|
-
"recharts": "^2.15.1"
|
|
106
|
-
},
|
|
107
|
-
"devDependencies": {
|
|
108
|
-
"@eslint/js": "^9.17.0",
|
|
109
|
-
"@testing-library/jest-dom": "^5.16.5",
|
|
110
|
-
"@types/lodash": "^4.17.15",
|
|
111
|
-
"@types/react": "^18.2.6",
|
|
112
|
-
"@types/react-dom": "^18.3.5",
|
|
113
|
-
"@types/react-lazy-load-image-component": "^1.6.4",
|
|
114
|
-
"@types/react-virtualized-auto-sizer": "^1.0.8",
|
|
115
|
-
"@types/react-window": "^1.8.5",
|
|
116
|
-
"@types/react-window-infinite-loader": "^1.0.6",
|
|
117
|
-
"@vitejs/plugin-react": "^4.3.4",
|
|
118
|
-
"eslint": "^9.17.0",
|
|
119
|
-
"eslint-plugin-react-hooks": "^5.0.0",
|
|
120
|
-
"eslint-plugin-react-refresh": "^0.4.16",
|
|
121
|
-
"globals": "^15.14.0",
|
|
122
|
-
"husky": "^8.0.3",
|
|
123
|
-
"lint-staged": "^13.2.2",
|
|
124
|
-
"prettier": "^2.8.8",
|
|
125
|
-
"tsc-alias": "^1.8.16",
|
|
126
|
-
"typescript": "5.0.2",
|
|
127
|
-
"typescript-eslint": "^8.18.2",
|
|
128
|
-
"vite": "6.0.5",
|
|
129
|
-
"vite-tsconfig-paths": "^4.2.0"
|
|
130
|
-
},
|
|
131
|
-
"peerDependencies": {
|
|
132
|
-
"react": "^18",
|
|
133
|
-
"react-dom": "^18",
|
|
134
|
-
"@mui/material": "^5",
|
|
135
|
-
"@emotion/react": "^11",
|
|
136
|
-
"@emotion/styled": "^11",
|
|
137
|
-
"framer-motion": "^10",
|
|
138
|
-
"react-hook-form": "^7",
|
|
139
|
-
"@hookform/resolvers": "^3",
|
|
140
|
-
"react-router-dom": "^7",
|
|
141
|
-
"i18next": "^22",
|
|
142
|
-
"react-i18next": "^12",
|
|
143
|
-
"react-multi-date-picker": "^4",
|
|
144
|
-
"dayjs": "^1",
|
|
145
|
-
"react-dropzone": "^14",
|
|
146
|
-
"react-hot-toast": "^2",
|
|
147
|
-
"recharts": "^2",
|
|
148
|
-
"react-window": "^1.8",
|
|
149
|
-
"react-window-infinite-loader": "^1",
|
|
150
|
-
"react-virtualized-auto-sizer": "^1",
|
|
151
|
-
"re-resizable": "^6",
|
|
152
|
-
"react-draggable": "^4",
|
|
153
|
-
"react-currency-input-field": "^3",
|
|
154
|
-
"react18-input-otp": "^1",
|
|
155
|
-
"@uiw/react-json-view": "^2.0.0-alpha"
|
|
156
|
-
},
|
|
157
|
-
"lint-staged": {
|
|
158
|
-
"src/**/*.{ts,tsx,json,js,jsx}": [
|
|
159
|
-
"yarn run prettier:fix",
|
|
160
|
-
"yarn run lint"
|
|
161
|
-
]
|
|
162
|
-
},
|
|
163
|
-
"publishConfig": {
|
|
164
|
-
"registry": "https://registry.npmjs.org/"
|
|
165
|
-
}
|
|
166
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@tap-payments/os-micro-frontend-shared",
|
|
3
|
+
"description": "Shared components and utilities for Tap Payments micro frontends",
|
|
4
|
+
"version": "0.1.176",
|
|
5
|
+
"testVersion": 0,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "build/index.js",
|
|
8
|
+
"module": "build/index.js",
|
|
9
|
+
"types": "build/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
"./package.json": "./package.json",
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./build/index.d.ts",
|
|
14
|
+
"import": "./build/index.js",
|
|
15
|
+
"require": "./build/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./constants": {
|
|
18
|
+
"types": "./build/constants/index.d.ts",
|
|
19
|
+
"import": "./build/constants/index.js",
|
|
20
|
+
"require": "./build/constants/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./components": {
|
|
23
|
+
"types": "./build/components/index.d.ts",
|
|
24
|
+
"import": "./build/components/index.js",
|
|
25
|
+
"require": "./build/components/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./components/*": {
|
|
28
|
+
"types": "./build/components/*/index.d.ts",
|
|
29
|
+
"import": "./build/components/*/index.js",
|
|
30
|
+
"require": "./build/components/*/index.js"
|
|
31
|
+
},
|
|
32
|
+
"./hooks": {
|
|
33
|
+
"types": "./build/hooks/index.d.ts",
|
|
34
|
+
"import": "./build/hooks/index.js",
|
|
35
|
+
"require": "./build/hooks/index.js"
|
|
36
|
+
},
|
|
37
|
+
"./utils": {
|
|
38
|
+
"types": "./build/utils/index.d.ts",
|
|
39
|
+
"import": "./build/utils/index.js",
|
|
40
|
+
"require": "./build/utils/index.js"
|
|
41
|
+
},
|
|
42
|
+
"./theme": {
|
|
43
|
+
"types": "./build/theme/index.d.ts",
|
|
44
|
+
"import": "./build/theme/index.js",
|
|
45
|
+
"require": "./build/theme/index.js"
|
|
46
|
+
},
|
|
47
|
+
"./types": {
|
|
48
|
+
"types": "./build/types/index.d.ts",
|
|
49
|
+
"import": "./build/types/index.js",
|
|
50
|
+
"require": "./build/types/index.js"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"author": {
|
|
55
|
+
"name": "Ahmed Sharkawy",
|
|
56
|
+
"email": "a.elsharkawy@tap.company"
|
|
57
|
+
},
|
|
58
|
+
"files": [
|
|
59
|
+
"build",
|
|
60
|
+
"readme.md"
|
|
61
|
+
],
|
|
62
|
+
"scripts": {
|
|
63
|
+
"ts:build": "rm -rf build && tsc -p tsconfig.npm.json && tsc-alias -p tsconfig.npm.json",
|
|
64
|
+
"push:local": "yarn ts:build && yalc publish --push",
|
|
65
|
+
"push": "npm run ts:build && npm publish --access public",
|
|
66
|
+
"push:test": "node scripts/increment-test-version.cjs && npm run ts:build && npm publish --access public --tag test && node scripts/restore-version.cjs",
|
|
67
|
+
"dev": "vite",
|
|
68
|
+
"build": "tsc -b && vite build ",
|
|
69
|
+
"prettier": "prettier --list-different \"src/**/*.{md,mdx,ts,js,tsx,jsx,json}\"",
|
|
70
|
+
"prettier:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md,css,json}\"",
|
|
71
|
+
"lint": "eslint . --color",
|
|
72
|
+
"lint:fix": "eslint src --fix --color",
|
|
73
|
+
"preview": "vite preview",
|
|
74
|
+
"prepare": "husky"
|
|
75
|
+
},
|
|
76
|
+
"dependencies": {
|
|
77
|
+
"@emotion/react": "^11.11.0",
|
|
78
|
+
"@emotion/styled": "^11.11.0",
|
|
79
|
+
"@hookform/resolvers": "^3.3.1",
|
|
80
|
+
"@mui/material": "^5.12.3",
|
|
81
|
+
"@uiw/react-json-view": "^2.0.0-alpha.16",
|
|
82
|
+
"axios": "^1.4.0",
|
|
83
|
+
"color": "^5.0.0",
|
|
84
|
+
"dayjs": "^1.11.8",
|
|
85
|
+
"framer-motion": "10.11.0",
|
|
86
|
+
"i18next": "^22.4.15",
|
|
87
|
+
"memoize-one": "^6.0.0",
|
|
88
|
+
"re-resizable": "^6.9.9",
|
|
89
|
+
"react": "^18.2.0",
|
|
90
|
+
"react-colorful": "^5.6.1",
|
|
91
|
+
"react-currency-input-field": "^3.6.11",
|
|
92
|
+
"react-dom": "^18.2.0",
|
|
93
|
+
"react-draggable": "^4.4.6",
|
|
94
|
+
"react-dropzone": "^14.2.3",
|
|
95
|
+
"react-hook-form": "^7.45.4",
|
|
96
|
+
"react-hot-toast": "^2.4.1",
|
|
97
|
+
"react-i18next": "^12.2.2",
|
|
98
|
+
"react-lazy-load-image-component": "^1.6.3",
|
|
99
|
+
"react-multi-date-picker": "^4.1.2",
|
|
100
|
+
"react-router-dom": "^7.7.0",
|
|
101
|
+
"react-virtualized-auto-sizer": "^1.0.20",
|
|
102
|
+
"react-window": "^1.8.9",
|
|
103
|
+
"react-window-infinite-loader": "^1.0.9",
|
|
104
|
+
"react18-input-otp": "^1.1.4",
|
|
105
|
+
"recharts": "^2.15.1"
|
|
106
|
+
},
|
|
107
|
+
"devDependencies": {
|
|
108
|
+
"@eslint/js": "^9.17.0",
|
|
109
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
110
|
+
"@types/lodash": "^4.17.15",
|
|
111
|
+
"@types/react": "^18.2.6",
|
|
112
|
+
"@types/react-dom": "^18.3.5",
|
|
113
|
+
"@types/react-lazy-load-image-component": "^1.6.4",
|
|
114
|
+
"@types/react-virtualized-auto-sizer": "^1.0.8",
|
|
115
|
+
"@types/react-window": "^1.8.5",
|
|
116
|
+
"@types/react-window-infinite-loader": "^1.0.6",
|
|
117
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
118
|
+
"eslint": "^9.17.0",
|
|
119
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
120
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
121
|
+
"globals": "^15.14.0",
|
|
122
|
+
"husky": "^8.0.3",
|
|
123
|
+
"lint-staged": "^13.2.2",
|
|
124
|
+
"prettier": "^2.8.8",
|
|
125
|
+
"tsc-alias": "^1.8.16",
|
|
126
|
+
"typescript": "5.0.2",
|
|
127
|
+
"typescript-eslint": "^8.18.2",
|
|
128
|
+
"vite": "6.0.5",
|
|
129
|
+
"vite-tsconfig-paths": "^4.2.0"
|
|
130
|
+
},
|
|
131
|
+
"peerDependencies": {
|
|
132
|
+
"react": "^18",
|
|
133
|
+
"react-dom": "^18",
|
|
134
|
+
"@mui/material": "^5",
|
|
135
|
+
"@emotion/react": "^11",
|
|
136
|
+
"@emotion/styled": "^11",
|
|
137
|
+
"framer-motion": "^10",
|
|
138
|
+
"react-hook-form": "^7",
|
|
139
|
+
"@hookform/resolvers": "^3",
|
|
140
|
+
"react-router-dom": "^7",
|
|
141
|
+
"i18next": "^22",
|
|
142
|
+
"react-i18next": "^12",
|
|
143
|
+
"react-multi-date-picker": "^4",
|
|
144
|
+
"dayjs": "^1",
|
|
145
|
+
"react-dropzone": "^14",
|
|
146
|
+
"react-hot-toast": "^2",
|
|
147
|
+
"recharts": "^2",
|
|
148
|
+
"react-window": "^1.8",
|
|
149
|
+
"react-window-infinite-loader": "^1",
|
|
150
|
+
"react-virtualized-auto-sizer": "^1",
|
|
151
|
+
"re-resizable": "^6",
|
|
152
|
+
"react-draggable": "^4",
|
|
153
|
+
"react-currency-input-field": "^3",
|
|
154
|
+
"react18-input-otp": "^1",
|
|
155
|
+
"@uiw/react-json-view": "^2.0.0-alpha"
|
|
156
|
+
},
|
|
157
|
+
"lint-staged": {
|
|
158
|
+
"src/**/*.{ts,tsx,json,js,jsx}": [
|
|
159
|
+
"yarn run prettier:fix",
|
|
160
|
+
"yarn run lint"
|
|
161
|
+
]
|
|
162
|
+
},
|
|
163
|
+
"publishConfig": {
|
|
164
|
+
"registry": "https://registry.npmjs.org/"
|
|
165
|
+
}
|
|
166
|
+
}
|