@mmb-digital/design-system-web 0.1.348-alpha.1 → 0.1.348-alpha.3
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/README.md +4 -4
- package/dist/index.cjs +2 -41
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2089 -2240
- package/dist/index.js +2 -41
- package/dist/index.js.map +1 -1
- package/package.json +33 -26
- package/dist/index.d.cts +0 -2847
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmb-digital/design-system-web",
|
|
3
|
-
"version": "0.1.348-alpha.
|
|
3
|
+
"version": "0.1.348-alpha.3",
|
|
4
4
|
"description": "MMB design-system-web",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"main": "
|
|
8
|
-
"module": "
|
|
9
|
-
"types": "
|
|
7
|
+
"main": "dist/index.cjs",
|
|
8
|
+
"module": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
12
13
|
"import": "./dist/index.js",
|
|
13
14
|
"require": "./dist/index.cjs"
|
|
14
|
-
}
|
|
15
|
-
"./package.json": "./package.json"
|
|
15
|
+
}
|
|
16
16
|
},
|
|
17
17
|
"repository": "https://bitbucket.lb.mbid.cz/scm/react/design-system-web.git",
|
|
18
18
|
"author": "Kasman, Samuel (MONETA,consultant) <samuel.kasman@moneta.cz>",
|
|
@@ -28,33 +28,35 @@
|
|
|
28
28
|
"node": ">=20"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
|
-
"build": "
|
|
32
|
-
"test": "
|
|
33
|
-
"t": "
|
|
34
|
-
"test:ci": "
|
|
31
|
+
"build": "rollup -c",
|
|
32
|
+
"test": "yarn p && yarn tsc && yarn l && yarn sl && yarn vi",
|
|
33
|
+
"t": "yarn test",
|
|
34
|
+
"test:ci": "yarn p && yarn tsc && yarn lint:ci && yarn sl && yarn vi",
|
|
35
35
|
"lint": "eslint . --cache",
|
|
36
|
-
"l": "
|
|
36
|
+
"l": "yarn lint",
|
|
37
37
|
"lint:ci": "eslint .",
|
|
38
|
-
"lint:fix": "
|
|
39
|
-
"lf": "
|
|
38
|
+
"lint:fix": "yarn eslint --fix",
|
|
39
|
+
"lf": "yarn lint:fix",
|
|
40
40
|
"prettier": "prettier --check .",
|
|
41
|
-
"p": "
|
|
42
|
-
"prettier:fix": "
|
|
43
|
-
"pf": "
|
|
41
|
+
"p": "yarn prettier",
|
|
42
|
+
"prettier:fix": "yarn prettier --write",
|
|
43
|
+
"pf": "yarn prettier:fix",
|
|
44
44
|
"tsc": "tsc -b",
|
|
45
45
|
"storybook": "storybook dev -p 6006 --no-open",
|
|
46
|
-
"sb": "
|
|
46
|
+
"sb": "yarn storybook",
|
|
47
47
|
"build-storybook": "NODE_OPTIONS=--max_old_space_size=1024 storybook build",
|
|
48
48
|
"stylelint": "stylelint \"./src/**/*.ts\" \"./src/**/*.tsx\"",
|
|
49
|
-
"sl": "
|
|
50
|
-
"stylelint:fix": "
|
|
51
|
-
"slf": "
|
|
49
|
+
"sl": "yarn stylelint",
|
|
50
|
+
"stylelint:fix": "yarn stylelint --fix",
|
|
51
|
+
"slf": "yarn stylelint --fix",
|
|
52
52
|
"vitest": "vitest run",
|
|
53
|
-
"vi": "
|
|
53
|
+
"vi": "yarn vitest",
|
|
54
54
|
"vitest:watch": "vitest",
|
|
55
|
-
"viw": "
|
|
55
|
+
"viw": "yarn vitest:watch",
|
|
56
56
|
"vitest:ui": "vitest --ui",
|
|
57
|
-
"vitest:coverage": "vitest run --coverage"
|
|
57
|
+
"vitest:coverage": "vitest run --coverage",
|
|
58
|
+
"deduplicate": "yarn yarn-deduplicate yarn.lock",
|
|
59
|
+
"d": "yarn deduplicate"
|
|
58
60
|
},
|
|
59
61
|
"devDependencies": {
|
|
60
62
|
"@babel/core": "^7.29.0",
|
|
@@ -65,7 +67,13 @@
|
|
|
65
67
|
"@emotion/react": "^11.14.0",
|
|
66
68
|
"@emotion/styled": "^11.14.1",
|
|
67
69
|
"@eslint/js": "^9.39.4",
|
|
68
|
-
"@
|
|
70
|
+
"@rollup/plugin-alias": "^6.0.0",
|
|
71
|
+
"@rollup/plugin-babel": "^7.0.0",
|
|
72
|
+
"@rollup/plugin-commonjs": "^29.0.2",
|
|
73
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
74
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
75
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
76
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
69
77
|
"@storybook/addon-docs": "^10.4.0",
|
|
70
78
|
"@storybook/addon-links": "^10.4.0",
|
|
71
79
|
"@storybook/addon-webpack5-compiler-babel": "^4.0.1",
|
|
@@ -76,7 +84,6 @@
|
|
|
76
84
|
"@testing-library/jest-dom": "^6.9.1",
|
|
77
85
|
"@testing-library/react": "^16.3.2",
|
|
78
86
|
"@testing-library/user-event": "^14.6.1",
|
|
79
|
-
"@types/babel__core": "^7.20.5",
|
|
80
87
|
"@types/lodash-es": "^4.17.12",
|
|
81
88
|
"@types/node": "^20.19.41",
|
|
82
89
|
"@types/react": "^19.2.15",
|
|
@@ -106,11 +113,11 @@
|
|
|
106
113
|
"stylelint-config-recess-order": "^7.7.0",
|
|
107
114
|
"stylelint-config-standard": "^40.0.0",
|
|
108
115
|
"stylelint-order": "^8.1.1",
|
|
109
|
-
"tsdown": "^0.21.10",
|
|
110
116
|
"ts-node": "^10.9.2",
|
|
111
117
|
"typescript": "^6.0.3",
|
|
112
118
|
"typescript-eslint": "^8.59.4",
|
|
113
119
|
"vitest": "^4.1.7",
|
|
120
|
+
"yarn-deduplicate": "^6.0.2",
|
|
114
121
|
"zod": "^4.4.3"
|
|
115
122
|
},
|
|
116
123
|
"dependencies": {
|