@avalw/search-worker 1.0.0 → 1.0.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 +21 -6
- package/package.json +1 -8
package/README.md
CHANGED
|
@@ -52,11 +52,7 @@ Visit [worker.avalw.org](https://worker.avalw.org) and create a free account. Yo
|
|
|
52
52
|
### 2. Install the Worker
|
|
53
53
|
|
|
54
54
|
```bash
|
|
55
|
-
# Install globally via npm
|
|
56
55
|
npm install -g @avalw/search-worker
|
|
57
|
-
|
|
58
|
-
# Or install from GitHub
|
|
59
|
-
npm install -g github:avalw/search-worker
|
|
60
56
|
```
|
|
61
57
|
|
|
62
58
|
### 3. Run the Worker
|
|
@@ -247,12 +243,31 @@ For security, API requests only work from whitelisted domains. Manage your domai
|
|
|
247
243
|
## Support
|
|
248
244
|
|
|
249
245
|
- Website: [worker.avalw.org](https://worker.avalw.org)
|
|
250
|
-
- Issues: [GitHub Issues](https://github.com/avalw/search-worker/issues)
|
|
251
246
|
- Email: contact@avalw.com
|
|
252
247
|
|
|
253
248
|
## License
|
|
254
249
|
|
|
255
|
-
MIT License
|
|
250
|
+
MIT License
|
|
251
|
+
|
|
252
|
+
Copyright (c) 2026 AVALW
|
|
253
|
+
|
|
254
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
255
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
256
|
+
in the Software without restriction, including without limitation the rights
|
|
257
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
258
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
259
|
+
furnished to do so, subject to the following conditions:
|
|
260
|
+
|
|
261
|
+
The above copyright notice and this permission notice shall be included in all
|
|
262
|
+
copies or substantial portions of the Software.
|
|
263
|
+
|
|
264
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
265
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
266
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
267
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
268
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
269
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
270
|
+
SOFTWARE.
|
|
256
271
|
|
|
257
272
|
---
|
|
258
273
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@avalw/search-worker",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "AVALW Search Worker - Contribute compute power, get free privacy-focused search API access",
|
|
5
5
|
"main": "lib/worker.js",
|
|
6
6
|
"bin": {
|
|
@@ -22,13 +22,6 @@
|
|
|
22
22
|
],
|
|
23
23
|
"author": "AVALW <contact@avalw.com>",
|
|
24
24
|
"license": "MIT",
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "git+https://github.com/avalw/search-worker.git"
|
|
28
|
-
},
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/avalw/search-worker/issues"
|
|
31
|
-
},
|
|
32
25
|
"homepage": "https://worker.avalw.org",
|
|
33
26
|
"engines": {
|
|
34
27
|
"node": ">=14.0.0"
|