-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
74 lines (74 loc) · 1.88 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
{
"name": "@nuxtjs/algolia",
"version": "1.10.2",
"description": "Algolia module for Nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/algolia.git"
},
"author": "Jakub Andrzejewski",
"contributors": [
"Baroshem <jakub.andrzejewski.dev@gmail.com>",
"Yasser Lahbibi"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:preview": "nuxi preview playground",
"dev:prepare": "nuxt-module-build --stub && nuxt-module-build prepare && nuxi prepare playground",
"docs": "cd docs && yarn dev",
"release": "nuxt-module-build && standard-version && git push --follow-tags && npm publish",
"lint": "eslint --ext .js,.ts,.vue"
},
"dependencies": {
"@algolia/cache-in-memory": "^4.14.2",
"@algolia/recommend": "^4.12.2",
"@algolia/requester-fetch": "^4.23.2",
"@nuxt/kit": "^3.7.0",
"algoliasearch": "^4.11.0",
"instantsearch.css": "^7.4.5",
"metadata-scraper": "^0.2.49",
"storyblok-algolia-indexer": "^1.1.0",
"vue-instantsearch": "^4.3.2"
},
"devDependencies": {
"@docsearch/css": "^3.0.0",
"@docsearch/js": "^3.0.0",
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"eslint": "latest",
"nuxt": "^3.8.0",
"standard-version": "^9.3.2",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public"
},
"directories": {
"doc": "docs",
"example": "playground"
},
"keywords": [
"algolia",
"search",
"recommend",
"vue-instantsearch",
"docsearch",
"nuxt",
"module"
]
}