-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.55 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
{
"name": "react-slct",
"version": "4.0.6",
"description": "Yet another Select-Box based on react and styled-components",
"main": "dist/index.js",
"scripts": {
"compile": "rm -rf dist && tsc -p . && node fuse",
"examples": "rm -rf .cache && parcel examples/src/index.html --out-dir examples/dist",
"publish": "git tag -a $npm_package_version -m '$npm_package_version' && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misantronic/select.git"
},
"keywords": [
"react",
"select"
],
"author": "David Schkalee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/misantronic/select/issues"
},
"homepage": "https://github.com/misantronic/select#readme",
"peerDependencies": {
"react": ">= 16.x",
"react-dom": ">= 16.x",
"styled-components": ">= 6.x"
},
"dependencies": {
"react-window": "^1.8.9"
},
"devDependencies": {
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-window": "^1.8.5",
"@types/styled-components": "^5.1.27",
"fuse-box": "^3.7.1",
"object-assign": "^4.1.1",
"parcel-bundler": "^1.12.5",
"prettier": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.1",
"terser": "^4.6.6",
"typescript": "^5.2.2"
},
"resolutions": {
"@types/react": "^18.2.21"
}
}