@medusajs/ui 4.0.22-snapshot-20250903100537 → 4.0.22-snapshot-20250903132457
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 +17 -17
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@medusajs/ui",
|
3
|
-
"version": "4.0.22-snapshot-
|
3
|
+
"version": "4.0.22-snapshot-20250903132457",
|
4
4
|
"author": "Kasper Kristensen <kasper@medusajs.com>",
|
5
5
|
"license": "MIT",
|
6
6
|
"repository": {
|
@@ -28,9 +28,22 @@
|
|
28
28
|
"dist/**",
|
29
29
|
"styles.css"
|
30
30
|
],
|
31
|
+
"scripts": {
|
32
|
+
"build": "yarn clean && yarn build:js:cjs && yarn build:js:esm",
|
33
|
+
"build:js:cjs": "tsc --project tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
|
34
|
+
"build:js:esm": "tsc --project tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
|
35
|
+
"clean": "rimraf dist",
|
36
|
+
"test": "vitest --run",
|
37
|
+
"test:watch": "vitest",
|
38
|
+
"test:coverage": "vitest --run --coverage",
|
39
|
+
"lint": "eslint \"**/*.ts*\"",
|
40
|
+
"storybook": "storybook dev -p 6006",
|
41
|
+
"storybook:build": "storybook build",
|
42
|
+
"typecheck": "tsc --noEmit"
|
43
|
+
},
|
31
44
|
"devDependencies": {
|
32
45
|
"@faker-js/faker": "^9.2.0",
|
33
|
-
"@medusajs/ui-preset": "2.10.2-snapshot-
|
46
|
+
"@medusajs/ui-preset": "2.10.2-snapshot-20250903132457",
|
34
47
|
"@storybook/addon-essentials": "^8.3.5",
|
35
48
|
"@storybook/addon-interactions": "^8.3.5",
|
36
49
|
"@storybook/addon-links": "^8.3.5",
|
@@ -71,7 +84,7 @@
|
|
71
84
|
"@dnd-kit/core": "^6.0.0",
|
72
85
|
"@dnd-kit/sortable": "^7.0.0",
|
73
86
|
"@dnd-kit/utilities": "^3.2.0",
|
74
|
-
"@medusajs/icons": "2.10.2-snapshot-
|
87
|
+
"@medusajs/icons": "2.10.2-snapshot-20250903132457",
|
75
88
|
"@tanstack/react-table": "8.20.5",
|
76
89
|
"clsx": "^1.2.1",
|
77
90
|
"copy-to-clipboard": "^3.3.3",
|
@@ -101,18 +114,5 @@
|
|
101
114
|
],
|
102
115
|
"publishConfig": {
|
103
116
|
"access": "public"
|
104
|
-
},
|
105
|
-
"scripts": {
|
106
|
-
"build": "yarn clean && yarn build:js:cjs && yarn build:js:esm",
|
107
|
-
"build:js:cjs": "tsc --project tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
|
108
|
-
"build:js:esm": "tsc --project tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
|
109
|
-
"clean": "rimraf dist",
|
110
|
-
"test": "vitest --run",
|
111
|
-
"test:watch": "vitest",
|
112
|
-
"test:coverage": "vitest --run --coverage",
|
113
|
-
"lint": "eslint \"**/*.ts*\"",
|
114
|
-
"storybook": "storybook dev -p 6006",
|
115
|
-
"storybook:build": "storybook build",
|
116
|
-
"typecheck": "tsc --noEmit"
|
117
117
|
}
|
118
|
-
}
|
118
|
+
}
|