-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.8 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
{
"name": "limner",
"version": "1.0.1",
"description": "MCP image generation agent. Foundation of the Limner family.",
"license": "Apache-2.0",
"private": true,
"author": "Vinson Consulting",
"repository": {
"type": "git",
"url": "git+https://github.com/vinsonconsulting/limner.git"
},
"homepage": "https://github.com/vinsonconsulting/limner#readme",
"bugs": {
"url": "https://github.com/vinsonconsulting/limner/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"image-generation",
"claude-managed-agents",
"cloudflare",
"workers",
"agent"
],
"engines": {
"node": ">=22.13",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.28.2",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint .",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r test",
"test:coverage": "pnpm -r exec vitest run --coverage --coverage.reporter=text-summary --passWithNoTests",
"build": "node scripts/sync-version.mjs && node scripts/sync-packaging.mjs && pnpm -r build",
"sync-version": "node scripts/sync-version.mjs",
"sync-packaging": "node scripts/sync-packaging.mjs",
"pack:mcpb": "node scripts/pack-mcpb.mjs",
"smoke:mcpb": "node scripts/smoke-mcpb.mjs",
"setup:cloudflare": "node scripts/setup-cloudflare.mjs",
"clean": "pnpm -r exec rm -rf dist .tsbuildinfo"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"workerd"
],
"overrides": {
"tmp": ">=0.2.6",
"shell-quote": ">=1.8.4",
"hono": ">=4.12.25",
"esbuild": ">=0.28.1",
"ws": ">=8.21.0"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"typescript-eslint": "^8.60.1",
"vite": "^7.3.5"
}
}