@nusameta/design-system 0.0.1

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.
@@ -0,0 +1,2 @@
1
+ import { ClassValue } from 'clsx';
2
+ export declare function cn(...inputs: ClassValue[]): string;
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@nusameta/design-system",
3
+ "version": "0.0.1",
4
+ "type": "module",
5
+ "main": "./dist/index.cjs.js",
6
+ "module": "./dist/index.es.js",
7
+ "types": "./dist/index.d.ts",
8
+ "packageManager": "yarn@4.9.1",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.es.js",
13
+ "require": "./dist/index.cjs.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "dev": "storybook dev -p 6006",
21
+ "storybook": "storybook dev -p 6006",
22
+ "build": "yarn run vite build",
23
+ "preview": "yarn run vite preview",
24
+ "build-storybook": "storybook build",
25
+ "lint": "eslint .",
26
+ "release": "yarn run build && changeset publish"
27
+ },
28
+ "publishConfig": {
29
+ "registry": "https://registry.npmjs.org/",
30
+ "access": "public",
31
+ "provenance": true
32
+ },
33
+ "peerDependencies": {
34
+ "react": ">=18.0.0",
35
+ "react-dom": ">=18.0.0"
36
+ },
37
+ "devDependencies": {
38
+ "@changesets/cli": "^2.29.8",
39
+ "@chromatic-com/storybook": "^5.0.0",
40
+ "@storybook/addon-a11y": "^10.1.11",
41
+ "@storybook/react-vite": "^10.1.11",
42
+ "@types/node": "^25.0.10",
43
+ "@types/react": "^19.2.8",
44
+ "@types/react-dom": "^19.2.3",
45
+ "@vitejs/plugin-react": "^4.3.4",
46
+ "@vitest/browser-playwright": "^4.0.17",
47
+ "@vitest/coverage-v8": "^4.0.17",
48
+ "autoprefixer": "^10.4.23",
49
+ "playwright": "^1.57.0",
50
+ "postcss": "^8.5.6",
51
+ "react": "^19.2.3",
52
+ "react-dom": "^19.2.3",
53
+ "storybook": "^10.1.11",
54
+ "tailwindcss": "^3.4.19",
55
+ "tailwindcss-animate": "^1.0.7",
56
+ "typescript": "^5.9.3",
57
+ "vite": "^6.0.0",
58
+ "vite-plugin-banner": "^0.8.0",
59
+ "vite-plugin-dts": "^4.5.0",
60
+ "vitest": "^4.0.17"
61
+ },
62
+ "dependencies": {
63
+ "class-variance-authority": "^0.7.1",
64
+ "clsx": "^2.1.1",
65
+ "lucide-react": "^0.562.0",
66
+ "react-aria-components": "^1.14.0",
67
+ "tailwind-merge": "^3.4.0"
68
+ }
69
+ }