@effect-x/ultimate-search 0.1.0
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/LICENSE +21 -0
- package/README.md +172 -0
- package/SKILL.md +79 -0
- package/dist/cli.js +291 -0
- package/dist/cli.js.map +329 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@effect-x/ultimate-search",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "CLI-first web search and MCP server for agents, built with Effect.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"agent",
|
|
7
|
+
"cli",
|
|
8
|
+
"effect",
|
|
9
|
+
"grok",
|
|
10
|
+
"mcp",
|
|
11
|
+
"search",
|
|
12
|
+
"tavily"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"author": "effect-x contributors",
|
|
16
|
+
"bin": {
|
|
17
|
+
"ultimate-search": "./dist/cli.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"SKILL.md"
|
|
24
|
+
],
|
|
25
|
+
"type": "module",
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public",
|
|
28
|
+
"provenance": true
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"prepare": "effect-language-service patch && node ./tools/setup-husky.mjs",
|
|
32
|
+
"test": "vitest --silent 'passed-only'",
|
|
33
|
+
"madge": "madge --circular --ts-config ./tsconfig.json --no-color --no-spinner --extensions 'ts,tsx' ./src",
|
|
34
|
+
"check": "concurrently \"oxlint\" \"tsgo --noEmit\" \"bun run test --watch false\" \"bun run madge\" \"effect-language-service diagnostics --project tsconfig.json\"",
|
|
35
|
+
"fix": "concurrently \"oxlint --fix\" \"oxfmt\"",
|
|
36
|
+
"build": "node ./tools/build-cli.mjs",
|
|
37
|
+
"prepack": "bun run build",
|
|
38
|
+
"pack:check": "npm pack --dry-run",
|
|
39
|
+
"release:check": "bun run check && bun run pack:check",
|
|
40
|
+
"release:version": "changeset version",
|
|
41
|
+
"release:publish": "changeset publish",
|
|
42
|
+
"prepublishOnly": "bun run release:check"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@effect/platform-node": "4.0.0-beta.31"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@changesets/cli": "^2.29.7",
|
|
49
|
+
"@effect/language-service": "^0.79.0",
|
|
50
|
+
"@effect/vitest": "4.0.0-beta.31",
|
|
51
|
+
"@types/bun": "^1.3.10",
|
|
52
|
+
"@typescript/native-preview": "7.0.0-dev.20260311.1",
|
|
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",
|
|
58
|
+
"oxfmt": "^0.38.0",
|
|
59
|
+
"oxlint": "^1.53.0",
|
|
60
|
+
"typescript": "^5.9.3"
|
|
61
|
+
},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=20"
|
|
64
|
+
},
|
|
65
|
+
"packageManager": "bun@1.3.10"
|
|
66
|
+
}
|