-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.7 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
87
88
89
90
{
"name": "@sylphx/iris",
"version": "0.2.1",
"mcpName": "io.github.SylphxAI/iris",
"description": "Iris \u2014 evidence-first image reading for AI agents. Metadata, OCR text, regions, citeable evidence. Local-first. No generative LLM authority.",
"type": "module",
"bin": {
"iris": "./bin/iris"
},
"files": [
"bin/iris",
"dist/",
"README.md",
"LICENSE",
"src/"
],
"exports": {
".": "./dist/doctor-cli.js",
"./sdk": "./src/sdk.ts"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SylphxAI/image-reader-mcp.git"
},
"homepage": "https://github.com/SylphxAI/image-reader-mcp#readme",
"keywords": [
"mcp",
"model-context-protocol",
"image",
"reader",
"ocr",
"metadata",
"evidence",
"sylphx",
"agent-media-twin"
],
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"build:rust": "cargo build --release -p image-reader-core -p image-reader-cli -p image-reader-mcp-server && bun scripts/stage-rust-mcp.ts",
"test:rust": "cargo test",
"build": "bun build src/doctor-cli.ts --outdir dist --target node",
"watch": "tsc --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"validate": "bun run check && bun run typecheck && bun run test",
"doctor": "bun run src/doctor-cli.ts",
"benchmark:release-gate": "bun scripts/release-gate.ts",
"sync:server-json": "bun scripts/sync-server-json.ts",
"version-packages": "changeset version && bun run sync:server-json",
"start": "./bin/iris",
"clean": "rm -rf dist coverage",
"prepublishOnly": "bun run clean && bun run build && bun run build:rust",
"release": "bun run typecheck && bun run check && bun run build && bun test && changeset publish",
"benchmark:public-proof": "bun scripts/public-proof.ts",
"brand:pack-plan": "bun scripts/brand-pack-plan.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.9.1",
"bunup": "0.16.31",
"typescript": "^7.0.2"
},
"packageManager": "bun@1.3.12",
"private": false,
"optionalDependencies": {
"sharp": "^0.35.0",
"exifr": "^7.1.3",
"@sylphx/iris-darwin-arm64": "0.2.1",
"@sylphx/iris-darwin-x64": "0.2.1",
"@sylphx/iris-linux-x64-gnu": "0.2.1",
"@sylphx/iris-linux-arm64-gnu": "0.2.1"
}
}