-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) Β· 2.69 KB
/
package.json
File metadata and controls
100 lines (100 loc) Β· 2.69 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "daleui",
"version": "0.1.1",
"type": "module",
"repository": "github:DaleStudy/daleui",
"license": "MIT",
"homepage": "https://www.daleui.com",
"keywords": [
"design-system",
"ui-components",
"components-library",
"react",
"storybook"
],
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./styles.css": "./dist/index.css",
"./*": {
"types": "./dist/components/*/*.d.ts",
"import": "./dist/components/*/*.js"
}
},
"files": [
"dist",
"styled-system",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:lib": "tsc -b && vite build --config vite.lib.config.ts && tsc -p tsconfig.build.json",
"format": "prettier --check .",
"lint": "eslint .",
"test": "vitest",
"coverage": "vitest run --coverage",
"preview": "vite preview",
"sb": "storybook dev -p 6006",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "panda codegen"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@ark-ui/react": "^5.34.1",
"lucide-react": "^0.577.0"
},
"devDependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"@chromatic-com/storybook": "^4.1.3",
"@codecov/vite-plugin": "^1.9.1",
"@eslint/js": "^9.39.4",
"@faker-js/faker": "^10.3.0",
"@pandacss/dev": "^1.8.2",
"@storybook/addon-a11y": "^10.2.19",
"@storybook/addon-designs": "^11.1.3",
"@storybook/addon-docs": "^10.2.19",
"@storybook/addon-themes": "^10.2.19",
"@storybook/react-vite": "^10.2.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"axe-playwright": "^2.2.2",
"chromatic": "^13.3.5",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-storybook": "^10.2.19",
"eslint-plugin-testing-library": "^7.16.2",
"globals": "^17.0.0",
"happy-dom": "^20.8.3",
"prettier": "^3.8.1",
"storybook": "^10.2.19",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.0.18"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}