@effect-x/ultimate-search 0.1.0 → 0.1.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 +26 -127
- package/SKILL.md +8 -20
- package/dist/cli.js +1291 -265
- package/dist/cli.js.map +1 -329
- package/package.json +36 -26
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-x/ultimate-search",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "CLI-first web search and MCP server for agents
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "CLI-first web search toolkit and read-only MCP server for agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
7
7
|
"cli",
|
|
@@ -11,10 +11,20 @@
|
|
|
11
11
|
"search",
|
|
12
12
|
"tavily"
|
|
13
13
|
],
|
|
14
|
+
"homepage": "https://github.com/effect-anything/ultimate-search#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/effect-anything/ultimate-search/issues"
|
|
17
|
+
},
|
|
14
18
|
"license": "MIT",
|
|
15
|
-
"
|
|
19
|
+
"contributors": [
|
|
20
|
+
"xesrevinu"
|
|
21
|
+
],
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/effect-anything/ultimate-search.git"
|
|
25
|
+
},
|
|
16
26
|
"bin": {
|
|
17
|
-
"ultimate-search": "
|
|
27
|
+
"ultimate-search": "dist/cli.js"
|
|
18
28
|
},
|
|
19
29
|
"files": [
|
|
20
30
|
"dist",
|
|
@@ -23,44 +33,44 @@
|
|
|
23
33
|
"SKILL.md"
|
|
24
34
|
],
|
|
25
35
|
"type": "module",
|
|
36
|
+
"sideEffects": false,
|
|
26
37
|
"publishConfig": {
|
|
27
38
|
"access": "public",
|
|
28
39
|
"provenance": true
|
|
29
40
|
},
|
|
30
41
|
"scripts": {
|
|
31
|
-
"prepare": "
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
42
|
+
"prepare": "lefthook install",
|
|
43
|
+
"build": "tsdown",
|
|
44
|
+
"dev": "tsdown --watch",
|
|
45
|
+
"lint": "oxlint .",
|
|
46
|
+
"format": "oxfmt .",
|
|
47
|
+
"format:check": "oxfmt --check .",
|
|
48
|
+
"typecheck": "tsc --noEmit",
|
|
49
|
+
"test": "vitest run",
|
|
50
|
+
"check": "bun run lint && bun run format:check && bun run typecheck && bun run test && bun run build",
|
|
51
|
+
"changeset": "changeset",
|
|
52
|
+
"version-packages": "changeset version",
|
|
53
|
+
"release": "changeset publish --provenance",
|
|
54
|
+
"prepack": "bun run build"
|
|
43
55
|
},
|
|
44
56
|
"dependencies": {
|
|
45
|
-
"@effect/platform-node": "4.0.0-beta.31"
|
|
57
|
+
"@effect/platform-node": "4.0.0-beta.31",
|
|
58
|
+
"effect": "4.0.0-beta.31"
|
|
46
59
|
},
|
|
47
60
|
"devDependencies": {
|
|
48
61
|
"@changesets/cli": "^2.29.7",
|
|
49
|
-
"@effect/language-service": "^0.79.0",
|
|
50
62
|
"@effect/vitest": "4.0.0-beta.31",
|
|
51
63
|
"@types/bun": "^1.3.10",
|
|
52
|
-
"
|
|
53
|
-
"concurrently": "^9.2.1",
|
|
54
|
-
"effect": "4.0.0-beta.31",
|
|
55
|
-
"husky": "^9.1.7",
|
|
56
|
-
"lint-staged": "^16.3.3",
|
|
57
|
-
"madge": "^8.0.0",
|
|
64
|
+
"lefthook": "^1.11.13",
|
|
58
65
|
"oxfmt": "^0.38.0",
|
|
59
66
|
"oxlint": "^1.53.0",
|
|
60
|
-
"
|
|
67
|
+
"tsdown": "^0.15.5",
|
|
68
|
+
"typescript": "^5.9.3",
|
|
69
|
+
"vitest": "^4.1.0"
|
|
61
70
|
},
|
|
62
71
|
"engines": {
|
|
63
|
-
"
|
|
72
|
+
"bun": ">=1.3.10",
|
|
73
|
+
"node": ">=24"
|
|
64
74
|
},
|
|
65
75
|
"packageManager": "bun@1.3.10"
|
|
66
76
|
}
|