-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@curiousleaf/design",
"description": "A React component design system for CuriousLeaf",
"version": "0.13.26",
"license": "MIT",
"type": "module",
"author": {
"name": "Piotr Kulpinski",
"email": "[email protected]",
"url": "https://kulpinski.dev"
},
"repository": "curious-leaf/design",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"dev": "storybook dev -p 6006 --no-open",
"test": "bun test",
"clean": "rimraf ./dist",
"build": "bun run ./build.ts && tsc --emitDeclarationOnly",
"prebuild": "bun run clean",
"release": "auto shipit --no-changelog",
"build-storybook": "storybook build --test -o dist/storybook",
"lint": "bun biome lint --apply .",
"format": "bun biome format --write ."
},
"dependencies": {
"@curiousleaf/utils": "^1.0.27",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-portal": "^1.0.4",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@tiptap/react": "^2.2.3",
"@uiw/react-color-sketch": "^2.0.6",
"cva": "^1.0.0-beta.1",
"markdown-to-jsx": "^7.4.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"react-textarea-autosize": "^8.5.3",
"tailwind-merge": "^2.2.1"
},
"devDependencies": {
"@biomejs/biome": "^1.7.1",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-onboarding": "^8.0.9",
"@storybook/addon-themes": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/manager-api": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@storybook/test": "^8.0.9",
"@storybook/theming": "^8.0.9",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.10",
"@types/bun": "^1.0.6",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"auto": "^11.0.5",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"rimraf": "^5.0.5",
"storybook": "^8.0.9",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.1.3"
},
"peerDependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.10",
"cva": "^1.0.0-beta.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
}
}