-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.18 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
81
82
83
84
85
86
{
"name": "@liustack/modlens",
"version": "3.26.1",
"description": "Plug-in vision for text-only LLMs, powered by the free Antigravity CLI",
"type": "module",
"bin": {
"modlens": "./dist/main.js"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "biome check src scripts dsh",
"format": "biome check --write src scripts",
"eval": "node evals/run.mjs",
"release": "node scripts/release.mjs",
"prepublishOnly": "pnpm build",
"docs:list": "node scripts/docs-list.js"
},
"files": [
"dist",
"docs",
"skills/modlens/SKILL.md",
"skills/modlens/scripts",
"skills/modlens/references",
"CHANGELOG.md",
"SECURITY.md",
"dsh",
"cordis.patch.yml"
],
"keywords": [
"cli",
"vision",
"ocr",
"antigravity",
"agent-skill",
"claude-code",
"skill",
"image-to-text",
"multimodal",
"modlens"
],
"author": "Leon Liu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/liustack/modlens.git"
},
"bugs": {
"url": "https://github.com/liustack/modlens/issues"
},
"homepage": "https://github.com/liustack/modlens#readme",
"engines": {
"node": ">=22.19"
},
"dependencies": {
"commander": "^13.1.0",
"undici": "^8.10.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@types/node": "^22.19.7",
"@vitest/coverage-v8": "^3.2.7",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^3.2.7"
},
"exports": {
".": "./dsh/index.js",
"./dsh": "./dsh/index.js",
"./package.json": "./package.json",
"./client": "./dsh/client.js"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [],
"platform": "web",
"immediately": true
}
}
}