forked from algolia/instantsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.08 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
{
"name": "react-instantsearch-core",
"version": "7.13.6",
"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": {
".": {
"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": "yarn build:cjs && yarn build:es && yarn build:umd && yarn build:types",
"build:cjs": "BABEL_ENV=cjs babel src --root-mode upward --extensions '.js,.ts,.tsx' --out-dir dist/cjs --ignore '**/__tests__/**/*','**/__mocks__/**/*' --quiet && ../../scripts/prepare-cjs.sh",
"build:es:base": "BABEL_ENV=es babel src --root-mode upward --extensions '.js,.ts,.tsx' --out-dir dist/es --ignore '**/__tests__/**/*','**/__mocks__/**/*'",
"build:es": "yarn build:es:base --quiet",
"build:umd": "BABEL_ENV=rollup rollup -c rollup.config.js",
"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",
"version": "./scripts/version.cjs",
"watch:es": "yarn --silent build:es:base --watch"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"algoliasearch-helper": "3.22.5",
"instantsearch.js": "4.75.3",
"use-sync-external-store": "^1.0.0"
},
"devDependencies": {
"@types/use-sync-external-store": "0.0.3",
"react-instantsearch-core-v6": "npm:[email protected]"
},
"peerDependencies": {
"algoliasearch": ">= 3.1 < 6",
"react": ">= 16.8.0 < 19"
}
}