-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.79 KB
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
75
76
77
78
79
80
{
"name": "@liustack/modsearch",
"version": "5.3.0",
"description": "Plug-in web search and page fetch for text-only LLMs, powered by the free Antigravity CLI",
"type": "module",
"bin": {
"modsearch": "./dist/main.js"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome lint",
"format": "biome format --write",
"release": "node scripts/release.mjs",
"prepublishOnly": "pnpm build",
"eval": "node evals/run.mjs",
"docs:list": "node scripts/docs-list.js"
},
"files": [
"dist",
"docs",
"skills/modsearch/SKILL.md",
"skills/modsearch/scripts",
"skills/modsearch/references",
"CHANGELOG.md",
"SECURITY.md",
"dsh",
"cordis.patch.yml"
],
"keywords": [
"search",
"web-fetch",
"cli",
"llm",
"agent",
"agent-skill",
"antigravity",
"modsearch",
"dsh-plugin",
"deepseek-harness"
],
"author": "Leon Liu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/liustack/modsearch.git"
},
"bugs": {
"url": "https://github.com/liustack/modsearch/issues"
},
"homepage": "https://github.com/liustack/modsearch#readme",
"engines": {
"node": ">=22.13"
},
"exports": {
".": "./dsh/index.js",
"./dsh": "./dsh/index.js",
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"dependencies": {
"commander": "^13.1.0",
"undici": "^7.29.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.7",
"@types/node": "^22.19.7",
"@vitest/coverage-v8": "3.2.4",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "3.2.4"
}
}