-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.38 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.38 KB
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
{
"name": "ice-ds",
"version": "1.0.3",
"type": "module",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"unpkg": "./dist/ice-ds.umd.js",
"jsdelivr": "./dist/ice-ds.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles": "./dist/style.css",
"./umd": "./dist/ice-ds.umd.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build && npm run build:css",
"build:css": "tailwindcss -i ./src/styles/globals.css -o ./dist/style.css --minify",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"type-check": "tsc --noEmit",
"chromatic": "npx chromatic --project-token=chpt_da72a8f6775ea4e"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@fontsource-variable/space-grotesk": "^5.2.10",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.456.0",
"tailwind-merge": "^2.6.1"
},
"devDependencies": {
"@storybook/addon-a11y": "^10.3.6",
"@storybook/addon-docs": "^10.3.6",
"@storybook/addon-links": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@types/node": "^25.6.2",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.5.0",
"chromatic": "^16.9.1",
"postcss": "^8.5.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^10.3.6",
"tailwindcss": "^3.4.19",
"typescript": "^5.6.3",
"vite": "^5.4.21",
"vite-plugin-dts": "^4.5.4"
}
}