-
Notifications
You must be signed in to change notification settings - Fork 530
/
Copy pathpackage.json
69 lines (69 loc) · 2.84 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
{
"name": "instantsearch.js",
"version": "4.77.0",
"description": "InstantSearch.js is a JavaScript library for building performant and instant search experiences with Algolia.",
"homepage": "https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/js/",
"types": "es/index.d.ts",
"keywords": [
"algolia",
"instantsearch",
"search",
"widget",
"vanilla"
],
"author": "Algolia <[email protected]>",
"license": "MIT",
"repository": "algolia/instantsearch",
"main": "cjs/index.js",
"module": "es/index.js",
"jsdelivr": "dist/instantsearch.production.min.js",
"unpkg": "dist/instantsearch.production.min.js",
"sideEffects": false,
"files": [
"dist",
"cjs",
"es",
"scripts/transforms"
],
"dependencies": {
"@algolia/events": "^4.0.1",
"@types/dom-speech-recognition": "^0.0.1",
"@types/google.maps": "^3.55.12",
"@types/hogan.js": "^3.0.0",
"@types/qs": "^6.5.3",
"algoliasearch-helper": "3.23.0",
"hogan.js": "^3.0.2",
"htm": "^3.0.0",
"instantsearch-ui-components": "0.11.0",
"preact": "^10.10.0",
"qs": "^6.5.1 < 6.10",
"search-insights": "^2.17.2"
},
"peerDependencies": {
"algoliasearch": ">= 3.1 < 6"
},
"scripts": {
"build": "yarn run build:cjs && yarn run build:es && yarn run build:umd && yarn run build:types",
"build:umd": "rm -rf dist && BABEL_ENV=umd rollup --config ./scripts/rollup/rollup.config.js",
"build:cjs": "rm -rf cjs && BABEL_ENV=cjs babel --root-mode upward src --extensions '.js,.ts,.tsx' --out-dir cjs/ --ignore 'src/index.es.ts','**/__tests__','**/__mocks__' --quiet",
"build:es:base": "BABEL_ENV=es babel --root-mode upward src --extensions '.js,.ts,.tsx' --out-dir es/ --ignore 'src/index.es.ts','**/__tests__','**/__mocks__'",
"build:es": "rm -rf es && yarn build:es:base --quiet && BABEL_ENV=es babel --root-mode upward src/index.es.ts --out-file es/index.js --quiet && echo '{\"type\":\"module\",\"sideEffects\":false}' > es/package.json",
"build:types": "scripts/typescript/extract.js",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook --quiet --port 6006 --ci --static-dir .storybook/static",
"storybook:build": "NODE_OPTIONS=--openssl-legacy-provider build-storybook --quiet --output-dir ../../website/stories/js --static-dir .storybook/static",
"test:exports": "node test/module/is-es-module.mjs && node test/module/is-cjs-module.cjs",
"version": "./scripts/version/update-version.js",
"watch:es": "yarn --silent build:es:base --watch"
},
"devDependencies": {
"@instantsearch/mocks": "1.67.0",
"@instantsearch/tests": "1.67.0",
"@instantsearch/testutils": "1.56.0",
"@storybook/html": "5.3.9",
"@types/scriptjs": "0.0.2",
"algoliasearch": "5.1.1",
"places.js": "1.17.1",
"scriptjs": "2.5.9",
"webpack": "4.47.0"
}
}