-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.89 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.89 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
{
"name": "cgc-ui-library",
"version": "1.0.0",
"description": "A modern and professional UI component library built with React and TypeScript",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./styles": "./dist/style.css"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"react",
"typescript",
"ui-library",
"components",
"design-system"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {},
"devDependencies": {
"@chromatic-com/storybook": "4.1.1",
"@eslint/js": "9.36.0",
"@storybook/addon-a11y": "10.0.0",
"@storybook/addon-docs": "10.0.0",
"@storybook/addon-onboarding": "10.0.0",
"@storybook/addon-vitest": "10.0.0",
"@storybook/react-vite": "10.0.0",
"@types/node": "24.6.0",
"@types/react": "19.1.16",
"@types/react-dom": "19.1.9",
"@vitejs/plugin-react": "5.0.4",
"@vitest/browser-playwright": "4.0.4",
"@vitest/coverage-v8": "4.0.4",
"eslint": "9.36.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.22",
"eslint-plugin-storybook": "10.0.0",
"globals": "16.4.0",
"playwright": "1.56.1",
"storybook": "10.0.0",
"typescript": "~5.9.3",
"typescript-eslint": "8.45.0",
"vite": "7.1.7",
"vite-plugin-dts": "^4.3.0",
"vitest": "4.0.4"
}
}