-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
123 lines (123 loc) · 3.91 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "chaya-ui",
"version": "1.0.0-beta.87",
"description": "Modern, Data-First UI Components for React",
"scripts": {
"tailwind": "tailwindcss -i ./src/style.scss -o ./dist/style.css -c ./tailwind.config.cjs",
"build-components": "rm -rf dist && rollup -c",
"build-tailwind": "npm run tailwind -- --minify",
"build": "npm run build-components",
"lint": "eslint src/ --ext .ts,.tsx",
"lint-fix": "eslint --fix src/ --ext .ts,.tsx",
"watch-tailwind": "npm run tailwind -- --watch",
"dev": "concurrently \"npm run watch-tailwind\" \"storybook dev -p 6006\"",
"build-storybook": "npm run build-tailwind && storybook build",
"type-check": "tsc --noEmit --emitDeclarationOnly false",
"storybook": "storybook dev -p 6006"
},
"contributors": [
"Ashwin S Shenoy <aswinshenoy65@gmail.com>",
"Advaith A J <advaitharunjeena@gmail.com>",
"Abhiram Krishna <abhikrishnaram88@gmail.com>"
],
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/chaya-ui/chaya-ui/issues"
},
"homepage": "https://github.com/chaya-ui/chaya-ui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chaya-ui/chaya-ui.git"
},
"keywords": [
"react",
"react-components",
"uikit",
"accessible",
"components",
"library",
"design-system",
"chaya-ui"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.2",
"@radix-ui/react-hover-card": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-a11y": "^8.2.2",
"@storybook/addon-docs": "^8.2.2",
"@storybook/addon-essentials": "^8.2.2",
"@storybook/addon-interactions": "^8.2.2",
"@storybook/addon-links": "^8.2.2",
"@storybook/addon-storysource": "^8.2.2",
"@storybook/addon-themes": "^8.2.2",
"@storybook/blocks": "^8.2.2",
"@storybook/react": "^8.2.2",
"@storybook/react-vite": "^8.2.2",
"@storybook/test": "^8.2.2",
"@storybook/theming": "^8.2.2",
"@types/color": "^3.0.3",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webappsec-credential-management": "^0.6.4",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"autoprefixer": "^10.4.19",
"babel-loader": "^8.3.0",
"clsx": "^1.2.1",
"color": "^4.2.3",
"concurrently": "^7.6.0",
"css-loader": "^6.7.3",
"cva": "^1.0.0-beta.1",
"eslint": "8.22.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-storybook": "^0.8.0",
"flatten-anything": "^3.0.5",
"immer": "^9.0.21",
"loadash": "^1.0.0",
"papaparse": "^5.4.1",
"postcss": "^8.4.21",
"postcss-nesting": "^12.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-waypoint": "^10.3.0",
"rollup": "^3.10.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-polyfill-node": "^0.11.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-preserve-directives": "^0.2.0",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"storybook": "^8.2.2",
"style-loader": "^3.3.1",
"tailwind-merge": "^2.1.0",
"tailwindcss": "^3.2.4",
"ts-deepmerge": ">=2.0.2",
"typescript": "^4.9.4",
"storybook-dark-mode": "^4.0.2",
"vite": "^5.3.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"nanoid": "^5.0.3"
},
"files": [
"dist"
],
"module": "dist/src/index.js",
"types": "dist/types/index.d.ts"
}