@medusajs/ui 0.0.0-canary-20230711183155
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 +3 -0
- package/package.json +114 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@medusajs/ui",
|
|
3
|
+
"version": "0.0.0-canary-20230711183155",
|
|
4
|
+
"author": "Kasper Kristensen <kasper@medusajs.com>",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "build/cjs/index.js",
|
|
7
|
+
"module": "build/esm/index.js",
|
|
8
|
+
"types": "build/types/src/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"build/",
|
|
11
|
+
"!build/types/**/*.tsbuildinfo",
|
|
12
|
+
"package.json"
|
|
13
|
+
],
|
|
14
|
+
"sideEffects": false,
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "rimraf build && yarn build:types && yarn build:js",
|
|
17
|
+
"build:js": "rollup -c",
|
|
18
|
+
"build:types": "tsc --project ./tsconfig.build.json",
|
|
19
|
+
"test": "vitest --run",
|
|
20
|
+
"test:watch": "vitest",
|
|
21
|
+
"test:coverage": "vitest --run --coverage",
|
|
22
|
+
"lint": "eslint \"**/*.ts*\"",
|
|
23
|
+
"storybook": "storybook dev -p 6006",
|
|
24
|
+
"storybook:build": "storybook build",
|
|
25
|
+
"typecheck": "tsc --noEmit"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@medusajs/eslint-config-ui": "0.0.0-canary-20230711183155",
|
|
29
|
+
"@medusajs/tsconfig-ui": "0.0.0-canary-20230711183155",
|
|
30
|
+
"@medusajs/ui-preset": "0.0.0-canary-20230711183155",
|
|
31
|
+
"@rollup/plugin-babel": "^6.0.3",
|
|
32
|
+
"@rollup/plugin-commonjs": "^24.0.1",
|
|
33
|
+
"@rollup/plugin-image": "^3.0.2",
|
|
34
|
+
"@rollup/plugin-json": "^6.0.0",
|
|
35
|
+
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
36
|
+
"@rollup/plugin-replace": "^5.0.2",
|
|
37
|
+
"@rollup/plugin-virtual": "^3.0.1",
|
|
38
|
+
"@rollup/pluginutils": "^5.0.2",
|
|
39
|
+
"@storybook/addon-essentials": "^7.0.23",
|
|
40
|
+
"@storybook/addon-interactions": "^7.0.23",
|
|
41
|
+
"@storybook/addon-links": "^7.0.23",
|
|
42
|
+
"@storybook/blocks": "^7.0.23",
|
|
43
|
+
"@storybook/react": "^7.0.23",
|
|
44
|
+
"@storybook/react-vite": "^7.0.23",
|
|
45
|
+
"@storybook/testing-library": "^0.0.14-next.2",
|
|
46
|
+
"@testing-library/dom": "^9.3.1",
|
|
47
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
48
|
+
"@testing-library/react": "^14.0.0",
|
|
49
|
+
"@testing-library/user-event": "^14.4.3",
|
|
50
|
+
"@types/jsdom": "^21.1.1",
|
|
51
|
+
"@types/react": "^18.2.0",
|
|
52
|
+
"@types/react-dom": "^18.2.0",
|
|
53
|
+
"@vitejs/plugin-react": "^4.0.1",
|
|
54
|
+
"@vitest/coverage-v8": "^0.32.2",
|
|
55
|
+
"autoprefixer": "^10.4.14",
|
|
56
|
+
"chromatic": "^6.19.9",
|
|
57
|
+
"eslint": "^7.32.0",
|
|
58
|
+
"eslint-plugin-storybook": "^0.6.12",
|
|
59
|
+
"jsdom": "^22.1.0",
|
|
60
|
+
"postcss": "^8.4.24",
|
|
61
|
+
"prop-types": "^15.8.1",
|
|
62
|
+
"react": "18.2.0",
|
|
63
|
+
"react-dom": "18.2.0",
|
|
64
|
+
"resize-observer-polyfill": "^1.5.1",
|
|
65
|
+
"rimraf": "^5.0.1",
|
|
66
|
+
"rollup": "^3.12.0",
|
|
67
|
+
"rollup-plugin-node-externals": "^6.1.1",
|
|
68
|
+
"rollup-plugin-typescript-paths": "^1.4.0",
|
|
69
|
+
"storybook": "^7.0.23",
|
|
70
|
+
"tailwindcss": "^3.3.2",
|
|
71
|
+
"typescript": "^5.1.6",
|
|
72
|
+
"typescript-transform-paths": "^3.4.6",
|
|
73
|
+
"vite": "^4.3.9",
|
|
74
|
+
"vite-plugin-dts": "^3.0.0-beta.1",
|
|
75
|
+
"vitest": "^0.32.2"
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"@medusajs/icons": "0.0.0-canary-20230711183155",
|
|
79
|
+
"@radix-ui/react-alert-dialog": "^1.0.4",
|
|
80
|
+
"@radix-ui/react-checkbox": "^1.0.4",
|
|
81
|
+
"@radix-ui/react-dialog": "^1.0.4",
|
|
82
|
+
"@radix-ui/react-label": "^2.0.2",
|
|
83
|
+
"@radix-ui/react-radio-group": "^1.1.3",
|
|
84
|
+
"@radix-ui/react-slot": "^1.0.2",
|
|
85
|
+
"@radix-ui/react-switch": "^1.0.3",
|
|
86
|
+
"@radix-ui/react-toast": "^1.1.4",
|
|
87
|
+
"@radix-ui/react-tooltip": "^1.0.6",
|
|
88
|
+
"class-variance-authority": "^0.6.1",
|
|
89
|
+
"clsx": "^1.2.1",
|
|
90
|
+
"tailwind-merge": "^1.13.2"
|
|
91
|
+
},
|
|
92
|
+
"peerDependencies": {
|
|
93
|
+
"react": "^18.0.0",
|
|
94
|
+
"react-dom": "^18.0.0"
|
|
95
|
+
},
|
|
96
|
+
"eslintConfig": {
|
|
97
|
+
"extends": [
|
|
98
|
+
"plugin:storybook/recommended"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
"browserslist": [
|
|
102
|
+
"last 3 chrome versions",
|
|
103
|
+
"last 3 firefox versions",
|
|
104
|
+
"last 3 opera versions",
|
|
105
|
+
"last 3 edge versions",
|
|
106
|
+
"last 3 safari versions",
|
|
107
|
+
"last 3 chromeandroid versions",
|
|
108
|
+
"last 1 firefoxandroid versions",
|
|
109
|
+
"ios >= 13.4"
|
|
110
|
+
],
|
|
111
|
+
"publishConfig": {
|
|
112
|
+
"access": "public"
|
|
113
|
+
}
|
|
114
|
+
}
|