@undefine-ui/design-system 1.0.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/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@undefine-ui/design-system",
3
+ "version": "1.0.0",
4
+ "description": "Define design system React components and theme.",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js",
16
+ "require": "./dist/index.cjs"
17
+ }
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "peerDependencies": {
23
+ "@emotion/react": "^11.14.0",
24
+ "@emotion/styled": "^11.14.1",
25
+ "@mui/material": "^7.3.1",
26
+ "@mui/x-data-grid": "^8.16.0",
27
+ "react": "^18.0.0 || ^19.0.0",
28
+ "react-dom": "^18.0.0 || ^19.0.0",
29
+ "react-hook-form": "^7.62.0"
30
+ },
31
+ "dependencies": {
32
+ "react-dropzone": "^14.3.8"
33
+ },
34
+ "devDependencies": {
35
+ "@chromatic-com/storybook": "^4.1.1",
36
+ "@storybook/addon-a11y": "^9.1.3",
37
+ "@storybook/addon-docs": "^9.1.3",
38
+ "@storybook/addon-onboarding": "^9.1.3",
39
+ "@storybook/addon-themes": "^9.1.3",
40
+ "@storybook/addon-vitest": "^9.1.3",
41
+ "@storybook/react-vite": "^9.1.3",
42
+ "@storybook/test-runner": "^0.24.1",
43
+ "@testing-library/jest-dom": "^6.4.4",
44
+ "@testing-library/react": "^16.3.0",
45
+ "@types/react": "^19.1.10",
46
+ "@types/react-dom": "^19.1.7",
47
+ "@vitejs/plugin-react-swc": "^4.0.0",
48
+ "@vitest/browser": "^3.2.4",
49
+ "@vitest/coverage-v8": "^3.2.4",
50
+ "jsdom": "^25.0.0",
51
+ "playwright": "^1.55.0",
52
+ "storybook": "^9.1.3",
53
+ "tsup": "^8.3.0",
54
+ "vite": "^7.1.2",
55
+ "vite-tsconfig-paths": "^5.1.0",
56
+ "vitest": "^3.2.4"
57
+ },
58
+ "license": "MIT",
59
+ "scripts": {
60
+ "build": "tsup",
61
+ "dev": "tsup --watch",
62
+ "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
63
+ "test": "vitest",
64
+ "storybook": "storybook dev -p 6006",
65
+ "build-storybook": "storybook build"
66
+ }
67
+ }