ds-smart-ui 0.1.83 → 0.1.84

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.
Files changed (1) hide show
  1. package/package.json +19 -25
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "ds-smart-ui",
3
3
  "description": "Smart UI is a React component library that helps you build accessible and responsive web applications.",
4
- "author": "Anas Shofyan <anasshofyandev@gmail.com>",
4
+ "author": {
5
+ "name": "Anas Shofyan",
6
+ "email": "anasshofyandev@gmail.com"
7
+ },
5
8
  "private": false,
6
- "version": "0.1.83",
9
+ "version": "0.1.84",
7
10
  "license": "MIT",
8
11
  "repository": {
9
12
  "type": "git",
@@ -15,15 +18,10 @@
15
18
  "ds-smart-ui",
16
19
  "smart-ui-react"
17
20
  ],
18
- "engines": {
19
- "node": ">=18.0.0",
20
- "npm": ">=9.0.0"
21
- },
22
21
  "type": "module",
23
22
  "main": "dist/index.umd.js",
24
23
  "module": "dist/index.es.js",
25
24
  "types": "dist/index.d.ts",
26
- "sideEffects": false,
27
25
  "exports": {
28
26
  ".": {
29
27
  "import": "./dist/index.es.js",
@@ -47,19 +45,24 @@
47
45
  "scripts": {
48
46
  "dev": "vite",
49
47
  "build": "vite build && tsc --emitDeclarationOnly",
50
- "prepack": "npm run build",
48
+ "prepare": "npm run build",
51
49
  "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
52
50
  "preview": "vite preview",
53
51
  "storybook": "storybook dev -p 6006",
54
52
  "build-storybook": "storybook build"
55
53
  },
56
54
  "peerDependencies": {
55
+ "react": "^18.2.0",
57
56
  "react-dom": "^18.2.0",
58
- "class-variance-authority": "^0.7.0",
57
+ "@emotion/react": "^11.14.0",
58
+ "@emotion/styled": "^11.14.0",
59
+ "@mui/icons-material": "^6.4.2",
59
60
  "@mui/material": "^6.4.2",
60
- "react-router-dom": "^6.23.1",
61
+ "@mui/x-date-pickers": "^7.25.0",
62
+ "material-react-table": "^3.1.0",
61
63
  "react-select": "^5.8.0",
62
- "material-react-table": "^3.1.0"
64
+ "react-textarea-autosize": "^8.5.7",
65
+ "@radix-ui/react-switch": "^1.1.3"
63
66
  },
64
67
  "devDependencies": {
65
68
  "@chromatic-com/storybook": "^3.2.4",
@@ -69,7 +72,7 @@
69
72
  "@storybook/addon-onboarding": "^8.5.3",
70
73
  "@storybook/blocks": "^8.5.3",
71
74
  "@storybook/manager-api": "^8.5.3",
72
- "@storybook/react": "^8.6.6",
75
+ "@storybook/react": "^8.5.3",
73
76
  "@storybook/react-vite": "^8.5.3",
74
77
  "@storybook/test": "^8.5.3",
75
78
  "@storybook/theming": "^8.5.3",
@@ -92,21 +95,12 @@
92
95
  "storybook": "^8.5.3",
93
96
  "tailwind-merge": "^2.3.0",
94
97
  "tailwindcss": "^3.4.3",
95
- "typescript": "^5.4.5",
96
- "vite": "^5.2.12",
98
+ "typescript": "^5.2.2",
99
+ "vite": "^5.2.0",
97
100
  "vite-plugin-dts": "^3.8.1",
98
101
  "vite-plugin-windicss": "^1.9.3"
99
102
  },
100
103
  "dependencies": {
101
- "@emotion/react": "^11.14.0",
102
- "@emotion/styled": "^11.14.0",
103
- "@mui/icons-material": "^6.4.2",
104
- "@mui/x-date-pickers": "^7.25.0",
105
- "@radix-ui/react-switch": "^1.1.3",
106
- "react-textarea-autosize": "^8.5.7"
107
- },
108
- "bugs": {
109
- "url": "https://github.com/anashofyan/smart-ui/issues"
110
- },
111
- "homepage": "https://smart-ui-alpha.vercel.app"
104
+ "class-variance-authority": "^0.7.0"
105
+ }
112
106
  }