-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
109 lines (109 loc) · 3.04 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
{
"name": "chakra-react-select",
"version": "5.0.2",
"description": "A Chakra UI wrapper for the popular library React Select",
"license": "MIT",
"author": "Chris Sandvik <[email protected]>",
"homepage": "https://github.com/csandman/chakra-react-select#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/csandman/chakra-react-select.git"
},
"bugs": {
"url": "https://github.com/csandman/chakra-react-select/issues"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "tsup --clean",
"dev": "concurrently npm:dev:*",
"dev:demo": "cd demo && npm run dev",
"dev:src": "tsup --watch",
"format": "concurrently npm:format:*",
"format:package": "prettier-package-json --write",
"format:src": "prettier --write .",
"install:all": "npm install && npm run install:demo && npm run install:codemod",
"install:codemod": "cd codemod && npm install",
"install:demo": "cd demo && npm install",
"lint": "concurrently npm:lint:*",
"lint:exports": "attw --pack .",
"lint:src": "eslint .",
"lint:types": "tsc",
"lint-fix": "eslint --fix src",
"prepare": "husky",
"prepublishOnly": "npm run build && npm run lint",
"postpublish": "git push --tags"
},
"dependencies": {
"react-select": "5.8.x"
},
"peerDependencies": {
"@chakra-ui/react": "2.x",
"@emotion/react": "^11.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.3.11",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-package-json": "^2.8.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
},
"keywords": [
"accessibility",
"chakra",
"chakra-ui",
"combobox",
"dropdown",
"input",
"listbox",
"menu",
"multi-select",
"react",
"react-select",
"select"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*": "prettier --ignore-unknown --write",
"package.json": "prettier-package-json --write"
}
}