forked from algolia/instantsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.66 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
{
"name": "react-instantsearch",
"version": "6.39.1",
"description": "⚡ Lightning-fast search for React and React Native apps, by Algolia",
"main": "index.js",
"module": "dist/es/index.js",
"files": [
"connectors.js",
"dom.js",
"index.js",
"native.js",
"server.js",
"dist"
],
"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.js"
},
"author": {
"name": "Algolia, Inc.",
"url": "https://www.algolia.com"
},
"keywords": [
"algolia",
"components",
"fast",
"instantsearch",
"react",
"react-dom",
"react-native",
"search"
],
"scripts": {
"clean": "rm -rf dist",
"build": "yarn build:cjs && yarn build:es && yarn build:umd",
"build:cjs": "BABEL_ENV=cjs babel connectors.js dom.js index.js native.js server.js --root-mode upward --extensions '.js,.ts,.tsx' --out-dir dist --quiet",
"build:es": "BABEL_ENV=es babel connectors.js dom.js index.js native.js server.js --root-mode upward --extensions '.js,.ts,.tsx' --out-dir dist/es --quiet",
"build:umd": "BABEL_ENV=rollup rollup -c rollup.config.js",
"preparePackageFolder": "cp package.json dist && cp ../../README.md dist",
"prepublishOnly": "yarn run preparePackageFolder"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"react-instantsearch-core": "6.39.1",
"react-instantsearch-dom": "6.39.1",
"react-instantsearch-native": "6.39.1"
},
"peerDependencies": {
"algoliasearch": ">= 3.1 < 5",
"react": ">= 16.3.0 < 19"
}
}