@cocso-ui/react 0.2.7 → 0.2.8

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 (2) hide show
  1. package/README.md +0 -2
  2. package/package.json +12 -12
package/README.md CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  이 Package는 리액트 기반 컴포넌트를 제공해요.
4
4
 
5
- `radix-ui`의 헤드리스 컴포넌트를 사용하여 접근성과 커스터마이징을 고려한 컴포넌트를 구현하고 있어요.
6
-
7
5
  ### Installation
8
6
 
9
7
  ```bash
package/package.json CHANGED
@@ -1,17 +1,11 @@
1
1
  {
2
2
  "name": "@cocso-ui/react",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/cocso/cocso-ui.git",
7
7
  "directory": "packages/react"
8
8
  },
9
- "scripts": {
10
- "prebuild": "rm -rf dist",
11
- "build": "rollup -c rollup.config.cjs",
12
- "lint": "biome lint .",
13
- "lint:fix": "biome lint . --fix"
14
- },
15
9
  "sideEffects": [
16
10
  "*.css"
17
11
  ],
@@ -32,7 +26,6 @@
32
26
  "dist"
33
27
  ],
34
28
  "dependencies": {
35
- "@cocso-ui/react-icons": "workspace:^",
36
29
  "@radix-ui/react-accordion": "^1.2.12",
37
30
  "@radix-ui/react-checkbox": "^1.3.3",
38
31
  "@radix-ui/react-dialog": "^1.1.15",
@@ -45,7 +38,8 @@
45
38
  "@radix-ui/react-tabs": "^1.1.13",
46
39
  "clsx": "^2.1.1",
47
40
  "sonner": "^2.0.7",
48
- "ts-pattern": "^5.8.0"
41
+ "ts-pattern": "^5.8.0",
42
+ "@cocso-ui/react-icons": "^0.1.1"
49
43
  },
50
44
  "devDependencies": {
51
45
  "@babel/preset-react": "^7.27.1",
@@ -53,11 +47,11 @@
53
47
  "@rollup/plugin-babel": "^6.0.4",
54
48
  "@rollup/plugin-commonjs": "^28.0.6",
55
49
  "@rollup/plugin-node-resolve": "^16.0.1",
56
- "@storybook/react": "^9.1.4",
50
+ "@storybook/react": "^9.1.5",
57
51
  "@types/react": "^19.1.12",
58
52
  "@types/react-dom": "^19.1.9",
59
53
  "react": "^19.1.1",
60
- "rollup": "^4.50.0",
54
+ "rollup": "^4.50.1",
61
55
  "rollup-plugin-dts": "^6.2.3",
62
56
  "rollup-plugin-postcss": "^4.0.2",
63
57
  "typescript": "^5.9.2"
@@ -68,5 +62,11 @@
68
62
  },
69
63
  "publishConfig": {
70
64
  "access": "public"
65
+ },
66
+ "scripts": {
67
+ "prebuild": "rm -rf dist",
68
+ "build": "rollup -c rollup.config.cjs",
69
+ "lint": "biome lint .",
70
+ "lint:fix": "biome lint . --fix"
71
71
  }
72
- }
72
+ }