@mmb-digital/design-system-web 0.1.347 → 0.1.348-alpha.0
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +102 -104
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +36 -24
- package/.eslintcache +0 -1
- package/rollup.config.js +0 -58
- package/tsconfig.app.json +0 -12
- package/tsconfig.base.json +0 -18
- package/tsconfig.node.json +0 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmb-digital/design-system-web",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.348-alpha.0",
|
|
4
4
|
"description": "MMB design-system-web",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -21,37 +21,40 @@
|
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
24
27
|
"engines": {
|
|
25
28
|
"node": ">=20"
|
|
26
29
|
},
|
|
27
30
|
"scripts": {
|
|
28
31
|
"build": "rollup -c",
|
|
29
|
-
"test": "
|
|
30
|
-
"t": "
|
|
31
|
-
"test:ci": "
|
|
32
|
+
"test": "pnpm p && pnpm tsc && pnpm l && pnpm sl && pnpm vi",
|
|
33
|
+
"t": "pnpm test",
|
|
34
|
+
"test:ci": "pnpm p && pnpm tsc && pnpm lint:ci && pnpm sl && pnpm vi",
|
|
32
35
|
"lint": "eslint . --cache",
|
|
33
|
-
"l": "
|
|
36
|
+
"l": "pnpm lint",
|
|
34
37
|
"lint:ci": "eslint .",
|
|
35
|
-
"lint:fix": "
|
|
36
|
-
"lf": "
|
|
38
|
+
"lint:fix": "pnpm eslint --fix",
|
|
39
|
+
"lf": "pnpm lint:fix",
|
|
37
40
|
"prettier": "prettier --check .",
|
|
38
|
-
"p": "
|
|
39
|
-
"prettier:fix": "
|
|
40
|
-
"pf": "
|
|
41
|
+
"p": "pnpm prettier",
|
|
42
|
+
"prettier:fix": "pnpm prettier --write",
|
|
43
|
+
"pf": "pnpm prettier:fix",
|
|
41
44
|
"tsc": "tsc -b",
|
|
42
45
|
"storybook": "storybook dev -p 6006 --no-open",
|
|
43
|
-
"sb": "
|
|
46
|
+
"sb": "pnpm storybook",
|
|
44
47
|
"build-storybook": "NODE_OPTIONS=--max_old_space_size=1024 storybook build",
|
|
45
48
|
"stylelint": "stylelint \"./src/**/*.ts\" \"./src/**/*.tsx\"",
|
|
46
|
-
"sl": "
|
|
47
|
-
"stylelint:fix": "
|
|
48
|
-
"slf": "
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
49
|
+
"sl": "pnpm stylelint",
|
|
50
|
+
"stylelint:fix": "pnpm stylelint --fix",
|
|
51
|
+
"slf": "pnpm stylelint --fix",
|
|
52
|
+
"vitest": "vitest run",
|
|
53
|
+
"vitest:watch": "vitest",
|
|
54
|
+
"vitest:ui": "vitest --ui",
|
|
55
|
+
"vitest:coverage": "vitest run --coverage",
|
|
56
|
+
"vi": "yarn vitest",
|
|
57
|
+
"viw": "yarn vitest:watch"
|
|
55
58
|
},
|
|
56
59
|
"devDependencies": {
|
|
57
60
|
"@babel/core": "^7.29.0",
|
|
@@ -79,11 +82,12 @@
|
|
|
79
82
|
"@testing-library/jest-dom": "^6.9.1",
|
|
80
83
|
"@testing-library/react": "^16.3.2",
|
|
81
84
|
"@testing-library/user-event": "^14.6.1",
|
|
82
|
-
"@types/jest": "^30.0.0",
|
|
83
85
|
"@types/lodash-es": "^4.17.12",
|
|
84
86
|
"@types/node": "^20.19.41",
|
|
85
87
|
"@types/react": "^19.2.15",
|
|
86
88
|
"@types/react-dom": "^19.2.3",
|
|
89
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
90
|
+
"@vitest/ui": "^4.1.7",
|
|
87
91
|
"eslint": "^9.39.4",
|
|
88
92
|
"eslint-plugin-import-x": "^4.16.2",
|
|
89
93
|
"eslint-plugin-perfectionist": "^5.9.0",
|
|
@@ -92,8 +96,7 @@
|
|
|
92
96
|
"eslint-plugin-storybook": "^10.4.0",
|
|
93
97
|
"eslint-plugin-unicorn": "^64.0.0",
|
|
94
98
|
"globals": "^17.6.0",
|
|
95
|
-
"
|
|
96
|
-
"jest-environment-jsdom": "^30.4.1",
|
|
99
|
+
"happy-dom": "^20.9.0",
|
|
97
100
|
"next-intl": "^4.12.0",
|
|
98
101
|
"postcss-styled-syntax": "^0.7.1",
|
|
99
102
|
"prettier": "^3.8.3",
|
|
@@ -111,18 +114,22 @@
|
|
|
111
114
|
"ts-node": "^10.9.2",
|
|
112
115
|
"typescript": "^6.0.3",
|
|
113
116
|
"typescript-eslint": "^8.59.4",
|
|
114
|
-
"
|
|
117
|
+
"vitest": "^4.1.7",
|
|
115
118
|
"zod": "^4.4.3"
|
|
116
119
|
},
|
|
117
120
|
"dependencies": {
|
|
121
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
118
122
|
"@floating-ui/react": "^0.27.19",
|
|
123
|
+
"@formatjs/intl": "^4.1.12",
|
|
119
124
|
"@google-recaptcha/core": "^1.1.3",
|
|
120
125
|
"@hookform/resolvers": "^5.4.0",
|
|
121
126
|
"afformative": "^0.7.0",
|
|
127
|
+
"csstype": "^3.2.3",
|
|
122
128
|
"date-fns": "^4.2.1",
|
|
123
129
|
"downshift": "^9.3.3",
|
|
124
130
|
"imask": "^7.6.1",
|
|
125
131
|
"immer": "^11.1.8",
|
|
132
|
+
"intl-messageformat": "^11.2.7",
|
|
126
133
|
"lodash-es": "^4.18.1",
|
|
127
134
|
"rc-slider": "^11.1.9",
|
|
128
135
|
"react-content-loader": "^7.1.2",
|
|
@@ -141,5 +148,10 @@
|
|
|
141
148
|
"react-hook-form": "^7.0.0",
|
|
142
149
|
"react-intl": "^10.0.0",
|
|
143
150
|
"zod": "^4.0.0"
|
|
151
|
+
},
|
|
152
|
+
"peerDependenciesMeta": {
|
|
153
|
+
"next-intl": {
|
|
154
|
+
"optional": true
|
|
155
|
+
}
|
|
144
156
|
}
|
|
145
157
|
}
|