-
Notifications
You must be signed in to change notification settings - Fork 554
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.69 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
{
"name": "react-instantsearch",
"version": "7.26.1",
"description": "⚡ Lightning-fast search for React, by Algolia",
"types": "dist/es/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"type": "module",
"exports": {
".": {
"types": "./dist/es/index.d.ts",
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
}
},
"sideEffects": false,
"license": "MIT",
"homepage": "https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/react/",
"repository": {
"type": "git",
"url": "https://github.com/algolia/instantsearch"
},
"author": {
"name": "Algolia, Inc.",
"url": "https://www.algolia.com"
},
"keywords": [
"algolia",
"components",
"fast",
"instantsearch",
"react",
"search"
],
"files": [
"README.md",
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "BABEL_ENV=es,rollup BUILD_FORMAT=esm rollup -c rollup.config.mjs && BABEL_ENV=rollup BUILD_FORMAT=cjs rollup -c rollup.config.mjs && BABEL_ENV=rollup BUILD_FORMAT=umd rollup -c rollup.config.mjs && yarn build:types",
"build:types": "tsc -p ./tsconfig.declaration.json --outDir ./dist/es",
"test:exports": "node ./test/module/is-es-module.mjs && node ./test/module/is-cjs-module.cjs",
"watch:es": "BABEL_ENV=es,rollup BUILD_FORMAT=esm rollup -c rollup.config.mjs --watch"
},
"dependencies": {
"@swc/helpers": "0.5.18",
"instantsearch-ui-components": "0.20.0",
"instantsearch.js": "4.90.0",
"react-instantsearch-core": "7.26.1"
},
"peerDependencies": {
"algoliasearch": ">= 3.1 < 6",
"react": ">= 16.8.0 < 20",
"react-dom": ">= 16.8.0 < 20"
}
}