forked from viclafouch/mui-chips-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 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
{
"name": "mui-chips-input",
"description": "A chips input designed for the React library MUI",
"author": "Victor de la Fouchardiere <[email protected]> (https://github.com/viclafouch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/viclafouch/mui-chips-input/issues"
},
"homepage": "https://viclafouch.github.io/mui-chips-input",
"version": "4.0.1",
"files": [
"dist"
],
"main": "./dist/mui-chips-input.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/mui-chips-input.es.js",
"default": "./dist/mui-chips-input.es.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/viclafouch/mui-chips-input.git"
},
"keywords": [
"react",
"typescript",
"input",
"mui",
"javascript",
"material",
"ui",
"form",
"chips"
],
"scripts": {
"build": "npm run lint && npm run test -- run && vite build",
"lint": "tsc && eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"check-types": "attw --pack . --ignore-rules cjs-resolves-to-esm -f json",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"release": "standard-version",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"standard-version": {
"scripts": {
"prerelease": "npm run build"
},
"skip": {
"changelog": true
}
},
"peerDependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.0.0",
"@types/react": "^19.0.0 || ^18.3.12",
"react": "^19.0.0 || ^18.3.1",
"react-dom": "^19.0.0 || ^18.3.1",
"@mui/icons-material": "^6.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@babel/core": "^7.26.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/base": "^5.0.0-beta.61",
"@mui/icons-material": "^6.1.6",
"@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/jest-dom": "^6.6.3",
"@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",
"@viclafouch/eslint-config-viclafouch": "^4.16.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.4",
"babel-loader": "^9.2.1",
"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",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.4"
}
}