-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 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
{
"name": "react-a11y-dropdown",
"version": "1.0.1",
"description": "An accessible and unopinionated dropdown component for React.",
"homepage": "https://dcooney.github.io/react-a11y-dropdown/",
"source": "src/lib/DropDown.js",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"engines": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcooney/react-a11y-dropdown.git"
},
"files": [
"dist"
],
"scripts": {
"start": "react-scripts start",
"dev": "microbundle watch",
"build": "rm -rf dist && microbundle --no-compress --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react --globals react/jsx-runtime=jsx",
"build:docs": "BUILD_PATH='./docs' react-scripts build",
"lint": "npx eslint '**/*.js'"
},
"peerDependencies": {
"react": "^19.0.0"
},
"dependencies": {
"classnames": "^2.5.1",
"styled-components": "^6.1.14"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"microbundle": "^0.15.1",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-scripts": "5.0.1",
"tailwindcss": "^3.4.17"
},
"author": "Darren Cooney ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcooney/react-a11y-dropdown/issues"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}