-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.63 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
{
"name": "react-accessibility-package",
"version": "1.0.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"description": "The React Accessibility Enhancer is a powerful tool designed to improve the visual representation and accessibility of React applications. With this component, you can effortlessly enhance the user experience for individuals with diverse needs, ensuring your application is inclusive and usable for everyone.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copy": "rm -rf ./src/components/Accessibility/* && cp -R ../portal/src/components/Accessibility/* ./src/components/Accessibility/",
"rollup": "rollup -c",
"patch": "npm version patch",
"major": "npm version major",
"publish": "npm publish"
},
"keywords": [
"accessibility",
"react"
],
"author": "Nahid Islam",
"license": "AGPLv3",
"devDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mdi/js": "^7.2.96",
"@mdi/react": "^1.6.1",
"@mui/material": "^5.14.8",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.3",
"@types/react": "^18.2.21",
"bootstrap": "^5.3.2",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-icons": "^4.11.0",
"rollup": "^3.28.1",
"rollup-plugin-dts": "^6.0.1",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts"
}