-
Notifications
You must be signed in to change notification settings - Fork 529
/
package.json
92 lines (92 loc) · 2.72 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
{
"name": "vue-instantsearch",
"author": {
"name": "Algolia, Inc.",
"url": "https://www.algolia.com"
},
"description": "👀 Lightning-fast Algolia search for Vue apps",
"keywords": [
"vue",
"algolia",
"search",
"instantsearch",
"components",
"ui",
"facet",
"autocomplete"
],
"license": "MIT",
"version": "4.19.12",
"files": [
"vue2",
"vue3",
"src"
],
"main": "vue2/cjs",
"module": "vue2/es",
"sideEffects": false,
"repository": "https://github.com/algolia/instantsearch",
"scripts": {
"prebuild": "rm -rf vue2 vue3",
"build": "rollup -c",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006 -c .storybook",
"storybook:build": "NODE_OPTIONS=--openssl-legacy-provider build-storybook -c .storybook -o ../../website/stories/vue",
"test:exports": "node ./test/module/vue2/is-es-module.mjs && node ./test/module/vue2/is-cjs-module.cjs",
"test:exports:vue3": "node ./test/module/vue3/is-es-module.mjs && node ./test/module/vue3/is-cjs-module.cjs",
"watch:es": "yarn --silent build --watch"
},
"dependencies": {
"instantsearch-ui-components": "0.9.0",
"instantsearch.js": "4.75.6",
"mitt": "^2.1.0"
},
"peerDependencies": {
"@vue/server-renderer": "^3.1.2",
"algoliasearch": ">= 3.32.0 < 6",
"vue": "^2.6.0 || >=3.0.0-rc.0",
"vue-server-renderer": "^2.6.11"
},
"peerDependenciesMeta": {
"vue-server-renderer": {
"optional": true
},
"@vue/server-renderer": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "7.15.5",
"@storybook/vue": "5.3.9",
"@vue/compiler-sfc": "3.2.47",
"@vue/server-renderer": "3.2.47",
"@vue/test-utils": "1.3.0",
"@vue/test-utils2": "npm:@vue/[email protected]",
"algoliasearch": "5.1.1",
"algoliasearch-helper": "3.22.6",
"instantsearch.css": "8.5.1",
"rollup": "1.32.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-buble": "0.19.6",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-filesize": "9.0.0",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.1.0",
"rollup-plugin-terser": "4.0.4",
"rollup-plugin-vue2": "npm:[email protected]",
"rollup-plugin-vue3": "npm:[email protected]",
"vue": "2.7.14",
"vue-autosuggest": "1.8.1",
"vue-i18n": "8.24.4",
"vue-i18n-vue3": "npm:vue-i18n@^9.2.2",
"vue-loader": "14.2.2",
"vue-router": "3.4.3",
"vue-router4": "npm:[email protected]",
"vue-server-renderer": "2.7.14",
"vue-slider-component": "3.0.15",
"vue-template-compiler": "2.7.14",
"vuetify": "1.5.3",
"vuex": "3.5.1",
"vuex4": "npm:[email protected]"
}
}