-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
113 lines (113 loc) · 3.12 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
{
"name": "mui-color-input",
"description": "A color input designed for the React library MUI built with TinyColor",
"author": "Victor de la Fouchardiere <[email protected]> (https://github.com/viclafouch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/viclafouch/mui-color-input/issues"
},
"homepage": "https://viclafouch.github.io/mui-color-input/",
"version": "5.0.1",
"files": [
"dist"
],
"main": "./dist/mui-color-input.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/mui-color-input.es.js",
"default": "./dist/mui-color-input.es.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/viclafouch/mui-color-input.git"
},
"keywords": [
"react",
"color",
"typescript",
"picker",
"input",
"mui",
"javascript",
"hex",
"rgb",
"material"
],
"scripts": {
"build": "pnpm lint && pnpm test -- run && vite build && pnpm check-types",
"lint": "tsc && eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "pnpm lint -- --fix",
"check-types": "attw --pack . --ignore-rules cjs-resolves-to-esm unexpected-module-syntax",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"release": "standard-version",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"standard-version": {
"scripts": {
"prerelease": "pnpm build"
},
"skip": {
"changelog": true
}
},
"peerDependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.0.0",
"@types/react": "^18.3.12",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"dependencies": {
"@ctrl/tinycolor": "^4.1.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@chromatic-com/storybook": "^1.7.0",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.1.6",
"@storybook/addon-actions": "^8.4.2",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/react": "^8.4.2",
"@storybook/react-vite": "^8.4.2",
"@storybook/test": "^8.4.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/stylis": "^4.2.6",
"@viclafouch/eslint-config-viclafouch": "^4.16.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^8.56.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"standard-version": "^9.5.0",
"storybook": "^8.4.2",
"stylis": "^4.3.4",
"stylis-plugin-rtl": "^2.1.1",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.4"
}
}