@spaceandtimelabs/dapp-mi-components 0.2.0 → 0.3.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/dist/index.d.ts +421 -77
- package/dist/index.es.js +13342 -13465
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1547 -1511
- package/dist/index.umd.js.map +1 -1
- package/package.json +23 -14
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spaceandtimelabs/dapp-mi-components",
|
|
3
|
-
"version": "0.2
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"license": "UNLICENSED",
|
|
4
5
|
"main": "dist/index.umd.js",
|
|
5
6
|
"module": "dist/index.es.js",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
@@ -25,11 +26,11 @@
|
|
|
25
26
|
"peerDependencies": {
|
|
26
27
|
"@emotion/react": "^11.13.0",
|
|
27
28
|
"@emotion/styled": "^11.13.0",
|
|
28
|
-
"@mui/base": "^5.0.0-
|
|
29
|
-
"@mui/icons-material": "^
|
|
30
|
-
"@mui/material": "^6.
|
|
31
|
-
"@mui/styles": "^
|
|
32
|
-
"@mui/utils": "^
|
|
29
|
+
"@mui/base": "^5.0.0-beta.62",
|
|
30
|
+
"@mui/icons-material": "^6.1.3",
|
|
31
|
+
"@mui/material": "^6.1.3",
|
|
32
|
+
"@mui/styles": "^6.1.8",
|
|
33
|
+
"@mui/utils": "^6.1.8",
|
|
33
34
|
"react": "^17.0.2",
|
|
34
35
|
"react-dom": "^17.0.2",
|
|
35
36
|
"react-router-dom": "^5.3.0",
|
|
@@ -38,11 +39,12 @@
|
|
|
38
39
|
"scripts": {
|
|
39
40
|
"clean": "rimraf dist",
|
|
40
41
|
"tsc": "tsc",
|
|
42
|
+
"watch-build": "chokidar 'src/**/*' -c 'npm run build'",
|
|
41
43
|
"build:dev": "env-cmd -f .env yarn run build",
|
|
42
44
|
"build": "yarn clean && tsc --emitDeclarationOnly && cross-env NODE_OPTIONS=--max_old_space_size=10240 vite build",
|
|
43
45
|
"start": "vite",
|
|
44
46
|
"fixlint": "eslint --fix \"**/*.{ts,tsx}\" && prettier --write . **/*.{ts,tsx}",
|
|
45
|
-
"lint": "eslint
|
|
47
|
+
"lint": "eslint \"**/*.{ts,tsx}\" && prettier --check . **/*.{ts,tsx}",
|
|
46
48
|
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
|
|
47
49
|
"pre-commit": "prettier --write \"**/*.{ts,tsx,json,md}\" && git add -A src",
|
|
48
50
|
"dev": "vite",
|
|
@@ -60,7 +62,9 @@
|
|
|
60
62
|
},
|
|
61
63
|
"resolutions": {
|
|
62
64
|
"@types/react": "^17.0.2",
|
|
63
|
-
"@types/react-dom": "^17.0.2"
|
|
65
|
+
"@types/react-dom": "^17.0.2",
|
|
66
|
+
"ws": "8.17.1",
|
|
67
|
+
"elliptic": "6.5.7"
|
|
64
68
|
},
|
|
65
69
|
"browserslist": [
|
|
66
70
|
">0.2%",
|
|
@@ -73,11 +77,11 @@
|
|
|
73
77
|
"@chromatic-com/storybook": "^1.6.1",
|
|
74
78
|
"@emotion/react": "^11.13.3",
|
|
75
79
|
"@emotion/styled": "^11.13.0",
|
|
76
|
-
"@mui/base": "^5.0.0-
|
|
77
|
-
"@mui/icons-material": "^
|
|
78
|
-
"@mui/material": "^6.
|
|
79
|
-
"@mui/styles": "^
|
|
80
|
-
"@mui/utils": "^
|
|
80
|
+
"@mui/base": "^5.0.0-beta.62",
|
|
81
|
+
"@mui/icons-material": "^6.1.3",
|
|
82
|
+
"@mui/material": "^6.1.3",
|
|
83
|
+
"@mui/styles": "^6.1.8",
|
|
84
|
+
"@mui/utils": "^6.1.8",
|
|
81
85
|
"@storybook/addon-essentials": "^8.2.6",
|
|
82
86
|
"@storybook/addon-interactions": "^8.2.6",
|
|
83
87
|
"@storybook/addon-links": "^8.2.6",
|
|
@@ -97,6 +101,7 @@
|
|
|
97
101
|
"@vitejs/plugin-react-refresh": "^1.3.6",
|
|
98
102
|
"babel-eslint": "^10.1.0",
|
|
99
103
|
"babel-loader": "^8.2.5",
|
|
104
|
+
"chokidar-cli": "^3.0.0",
|
|
100
105
|
"cross-env": "^7.0.3",
|
|
101
106
|
"cz-conventional-changelog": "^3.3.0",
|
|
102
107
|
"env-cmd": "^10.1.0",
|
|
@@ -105,6 +110,10 @@
|
|
|
105
110
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
106
111
|
"eslint-config-prettier": "^8.5.0",
|
|
107
112
|
"eslint-config-react-app": "^7.0.1",
|
|
113
|
+
"eslint-config-standard": "^17.1.0",
|
|
114
|
+
"eslint-config-standard-react": "^13.0.0",
|
|
115
|
+
"eslint-config-standard-with-typescript": "^43.0.1",
|
|
116
|
+
"eslint-import-resolver-typescript": "^3.7.0",
|
|
108
117
|
"eslint-plugin-import": "^2.25.3",
|
|
109
118
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
110
119
|
"eslint-plugin-prettier": "^4.2.1",
|
|
@@ -127,7 +136,7 @@
|
|
|
127
136
|
"vite-plugin-dts": "^4.3.0"
|
|
128
137
|
},
|
|
129
138
|
"engines": {
|
|
130
|
-
"node": "
|
|
139
|
+
"node": ">=20.0.0",
|
|
131
140
|
"yarn": "^1.22.21",
|
|
132
141
|
"npm": "^10.2.3"
|
|
133
142
|
},
|