-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
85 lines (85 loc) · 2.71 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
{
"name": "react-daisyui",
"version": "5.0.5",
"description": "react-daisyui - DaisyUI components built with React 🌼",
"author": "daisyui",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/daisyui/react-daisyui.git"
},
"type": "module",
"exports": {
"import": "./dist/react-daisyui.modern.js",
"require": "./dist/react-daisyui.cjs",
"default": "./dist/react-daisyui.modern.js",
"types": "./dist/index.d.ts"
},
"main": "./dist/react-daisyui.cjs",
"module": "./dist/react-daisyui.esm.js",
"unpkg": "./dist/react-daisyui.umd.js",
"sideEffects": false,
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"start": "storybook dev -p 6006",
"dist": "microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react --globals react/jsx-runtime=jsx --format modern,cjs,esm --css inline --compress false",
"docs": "storybook build -o ./docs -s ./public",
"test": "jest",
"format": "prettier --write ./src",
"prepublishOnly": "npm run dist",
"postpublish": "git push --no-verify && git push --tags",
"version": "npm run docs && git add -A docs",
"generate": "plop"
},
"peerDependencies": {
"daisyui": "^4.12.10",
"react": ">=16",
"react-dom": ">=16",
"tailwindcss": ">=3.2.7"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-export-default-from": "^7.16.0",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@storybook/addon-essentials": "^7.1.1",
"@storybook/addon-links": "^7.1.1",
"@storybook/addon-styling": "^1.3.4",
"@storybook/react": "^7.1.1",
"@storybook/react-vite": "^7.1.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.2",
"clsx": "^1.2.1",
"eslint-plugin-mdx": "^1.16.0",
"jest": "^27.0.6",
"microbundle": "^0.14.2",
"npm": "^9.6.3",
"plop": "^3.0.5",
"postcss": "^8.4.21",
"prettier": "^2.3.2",
"prism-react-renderer": "^1.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.1.1",
"styled-jsx": "^5.0.0",
"tailwind-merge": "^1.2.0",
"ts-jest": "^27.1.3",
"typescript": "^4.9.3",
"vite": "^4.2.0"
}
}