@stacksjs/search-engine 0.41.1 → 0.42.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -40,7 +40,7 @@ Please see our [releases](https://github.com/stacksjs/stacks/releases) page for
40
40
 
41
41
  ## 💪🏼 Contributing
42
42
 
43
- Please see [CONTRIBUTING](../../.github/CONTRIBUTING.md) for details.
43
+ Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
44
44
 
45
45
  ## 🏝 Community
46
46
 
@@ -50,7 +50,7 @@ For help, discussion about best practices, or any other conversation that would
50
50
 
51
51
  For casual chit-chat with others using this package:
52
52
 
53
- [Join the Open Web Discord Server](https://discord.ow3.org)
53
+ [Join the Stacks Discord Server](https://discord.ow3.org)
54
54
 
55
55
  ## 📄 License
56
56
 
File without changes
File without changes
package/dist/index.d.ts CHANGED
@@ -1,3 +1 @@
1
- import { MeiliSearch } from 'meilisearch';
2
- declare function client(): MeiliSearch;
3
- export { client };
1
+ export declare function useSearchEngine(): string;
package/dist/index.mjs CHANGED
@@ -1,8 +1,4 @@
1
- import { MeiliSearch } from "meilisearch";
2
- function client() {
3
- return new MeiliSearch({
4
- host: "http://127.0.0.1:7700",
5
- apiKey: "masterKey"
6
- });
1
+ export function useSearchEngine() {
2
+ const searchEngine = "";
3
+ return searchEngine;
7
4
  }
8
- export { client };
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/search-engine",
3
3
  "type": "module",
4
- "version": "0.41.1",
5
- "packageManager": "pnpm@7.16.0",
4
+ "version": "0.42.2",
5
+ "packageManager": "pnpm@7.17.0",
6
6
  "description": "The Stacks search engine integrations.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -20,6 +20,11 @@
20
20
  "search-engine",
21
21
  "meilisearch",
22
22
  "algolia",
23
+ "typesense",
24
+ "pagination",
25
+ "sorting",
26
+ "filtering",
27
+ "searching",
23
28
  "api",
24
29
  "headless",
25
30
  "stacks"
@@ -36,15 +41,18 @@
36
41
  ],
37
42
  "engines": {
38
43
  "node": ">=v18.12.1",
39
- "pnpm": ">=7.16.0"
44
+ "pnpm": ">=7.17.0"
40
45
  },
41
46
  "peerDependencies": {
47
+ "@vueuse/core": "^9.6.0",
42
48
  "meilisearch": "^0.29.1",
43
- "vitest": "^0.25.2"
49
+ "vue": "^3.2.45",
50
+ "@stacksjs/drivers": "0.42.2"
44
51
  },
45
52
  "devDependencies": {
46
53
  "mkdist": "^1.0.0",
47
- "typescript": "^4.9.3"
54
+ "typescript": "^4.9.3",
55
+ "@stacksjs/testing": "0.42.2"
48
56
  },
49
57
  "scripts": {
50
58
  "build": "mkdist -d",