-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
110 lines (110 loc) · 3.23 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
110
{
"name": "chakra-multiselect",
"version": "0.4.13",
"description": "A Multiselect component using ChakraUI",
"author": "bmartel",
"license": "MIT",
"repository": "bmartel/chakra-multiselect",
"homepage": "http://bmartel.github.io/chakra-multiselect",
"source": "./src/index.tsx",
"main": "./dist/index.js",
"module": "./dist/index.module.mjs",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.modern.mjs"
}
}
},
"types": "./dist/index.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "microbundle",
"dev": "run-p start example:start",
"prepare": "run-s build",
"postbuild": "run-s move:types",
"move:types": "mv dist/src/* ./dist/ && rmdir dist/src",
"start": "microbundle watch --no-compress",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint ./src --fix",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"docs:build": "typedoc",
"rm:deploy": "rimraf example/build",
"example:build": "cd example && yarn install && yarn run build",
"example:start": "cd example && yarn install && yarn run start",
"predeploy": "run-s example:build docs:build",
"deploy": "gh-pages -d example/build"
},
"dependencies": {},
"peerDependencies": {
"@chakra-ui/react": ">=1",
"@chakra-ui/react-utils": ">=1",
"@chakra-ui/theme-tools": ">=1",
"@chakra-ui/utils": ">=1",
"@emotion/react": ">=11",
"@emotion/styled": ">=11",
"framer-motion": ">=7",
"react": ">=17.0.0"
},
"devDependencies": {
"@chakra-ui/react": "^2.3.2",
"@chakra-ui/react-utils": "^2.0.6",
"@chakra-ui/theme-tools": "^2.0.11",
"@chakra-ui/utils": "^2.0.9",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@tanstack/react-virtual": "3.0.0-beta.54",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.58",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-eslint": "^10.1.0",
"compute-scroll-into-view": "^1.0.17",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"framer-motion": "^7.3.2",
"gh-pages": "^3.2.3",
"microbundle": "^0.15.1",
"minimatch": "3.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react": ">=18.0.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"rimraf": "^3.0.2",
"rollup-plugin-typescript": "^1.0.1",
"typedoc": "^0.23.14",
"typescript": "^4.8.3"
},
"resolutions": {
"minimatch": "3.0.5"
},
"files": [
"dist"
],
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"not ie 11"
]
}