forked from csandman/chakra-react-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.19 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.19 KB
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
{
"name": "chakra-react-select",
"version": "3.0.4",
"description": "A Chakra UI wrapper for the popular library React Select",
"license": "MIT",
"author": "Chris Sandvik <chris.sandvik@gmail.com>",
"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"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "concurrently npm:build:*",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --root-mode upward --extensions .ts,.tsx -d dist/cjs --source-maps",
"build:esm": "cross-env BABEL_ENV=esm babel src --root-mode upward --extensions .ts,.tsx -d dist/esm --source-maps",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types",
"format": "prettier --write .",
"format:package": "prettier-package-json --write",
"lint": "concurrently npm:lint:*",
"lint-fix": "eslint --fix src",
"lint:src": "eslint src --ext .ts,.tsx",
"lint:types": "tsc --noEmit",
"prepare": "husky install",
"start": "nodemon --watch src --exec npm run build -e ts,tsx"
},
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"dependencies": {
"react-select": "^5.2.2"
},
"peerDependencies": {
"@chakra-ui/form-control": "1.5.8",
"@chakra-ui/icon": "2.0.5",
"@chakra-ui/layout": "1.7.6",
"@chakra-ui/menu": "1.8.8",
"@chakra-ui/spinner": "1.2.6",
"@chakra-ui/system": "1.11.1",
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-eslint": "^10.1.0",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"prettier-package-json": "^2.6.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"keywords": [
"chakra",
"chakra-ui",
"combobox",
"input",
"multi select",
"react",
"react-select"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*": "prettier --ignore-unknown --write",
"package.json": "prettier-package-json --write"
}
}