-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
107 lines (107 loc) · 2.91 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
{
"name": "chakra-react-select",
"version": "6.0.1",
"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 --follow-tags"
},
"dependencies": {
"react-select": "^5.9.0"
},
"peerDependencies": {
"@chakra-ui/react": "3.x",
"next-themes": "0.x",
"react": "18.x || 19.x"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@chakra-ui/react": "^3.2.3",
"@eslint/js": "^9.17.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/react": "^19.0.1",
"concurrently": "^9.1.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"next-themes": "^0.4.4",
"prettier": "^3.4.2",
"prettier-package-json": "^2.8.0",
"react": "^19.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"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"
}
}