@akanaka-design/components 0.6.3 → 0.6.5

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 +16 -0
  2. package/package.json +5 -5
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # @akanaka-design/components
2
+
3
+ **Documentation:** [akanaka-design-system-docs.vercel.app](https://akanaka-design-system-docs.vercel.app)
4
+ **Repository:** [github.com/designfresh/akanaka-design-system](https://github.com/designfresh/akanaka-design-system)
5
+
6
+ React components built with the Akanaka design tokens and Tailwind.
7
+
8
+ ## Install
9
+
10
+ ```bash
11
+ npm install @akanaka-design/components @akanaka-design/tokens
12
+ # or
13
+ pnpm add @akanaka-design/components @akanaka-design/tokens
14
+ ```
15
+
16
+ Each component has a dedicated page on the docs site (props, examples, and patterns). Use the sidebar or `/components/[name]` routes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanaka-design/components",
3
- "version": "0.6.3",
3
+ "version": "0.6.5",
4
4
  "description": "React components for the design system",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -16,7 +16,8 @@
16
16
  },
17
17
  "files": [
18
18
  "dist",
19
- "tailwind.config.ts"
19
+ "tailwind.config.ts",
20
+ "README.md"
20
21
  ],
21
22
  "sideEffects": [
22
23
  "*.css"
@@ -26,8 +27,7 @@
26
27
  },
27
28
  "repository": {
28
29
  "type": "git",
29
- "url": "https://github.com/designfresh/akanaka-design-system.git",
30
- "directory": "packages/components"
30
+ "url": "https://github.com/designfresh/akanaka-design-system.git"
31
31
  },
32
32
  "bugs": {
33
33
  "url": "https://github.com/designfresh/akanaka-design-system/issues"
@@ -42,7 +42,7 @@
42
42
  ],
43
43
  "dependencies": {
44
44
  "@radix-ui/react-select": "^2.1.6",
45
- "@akanaka-design/tokens": "0.6.3"
45
+ "@akanaka-design/tokens": "0.6.5"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "react": "^18.0.0 || ^19.0.0",