-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeno.json
More file actions
79 lines (79 loc) · 2.7 KB
/
Copy pathdeno.json
File metadata and controls
79 lines (79 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
{
"name": "@toolscript/cli",
"version": "1.2.1",
"exports": "./src/cli/main.ts",
"license": "MIT",
"nodeModulesDir": "auto",
"tasks": {
"cli": "deno run --unstable-webgpu --allow-net --allow-read --allow-write --allow-env --allow-run --allow-sys --allow-ffi src/cli/main.ts",
"test": "deno test --unstable-webgpu --allow-net --allow-read --allow-write --allow-env --allow-run --allow-sys --allow-ffi",
"test:cov": "deno test --unstable-webgpu --allow-net --allow-read --allow-write --allow-env --allow-run --allow-sys --allow-ffi --coverage=coverage/",
"fmt": "deno fmt",
"fmt:check": "deno fmt --check",
"lint": "deno lint",
"compile": "deno compile --unstable-webgpu --allow-net --allow-read --allow-write --allow-env --allow-run --allow-sys --allow-ffi --output ./dist/toolscript src/cli/main.ts"
},
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"lib": ["deno.window", "deno.ns"]
},
"fmt": {
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"exclude": ["**/*.md", ".claude/**"]
},
"lint": {
"rules": {
"tags": ["recommended", "jsr"]
}
},
"test": {
"include": ["src/**/*.test.ts", "tests/**/*.test.ts"]
},
"imports": {
"@anthropic-ai/claude-agent-sdk": "npm:@anthropic-ai/claude-agent-sdk@^0.1.55",
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.8",
"@cliffy/table": "jsr:@cliffy/table@1.0.0-rc.8",
"@logtape/logtape": "jsr:@logtape/logtape@^0.8",
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@1.23.0",
"@std/async": "jsr:@std/async@^1.0.15",
"@std/fs": "jsr:@std/fs@^1.0.20",
"@std/path": "jsr:@std/path@^1.1.3",
"json-schema-to-typescript": "npm:json-schema-to-typescript@15.0.4",
"zod": "npm:zod@3.25.76",
"zod-to-json-schema": "npm:zod-to-json-schema@3.24.1",
"hono": "jsr:@hono/hono@^4.6",
"@hono/mcp": "jsr:@hono/mcp@0.1.4",
"express": "npm:express@5.1.0",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/testing": "jsr:@std/testing@^1.0.0",
"@std/text": "jsr:@std/text@^1.0.0",
"@huggingface/transformers": "npm:@mkerix/transformers@3.8.0-patch.4",
"fuse.js": "npm:fuse.js@^7.0.0"
},
"publish": {
"exclude": [
"CLAUDE.md",
"AGENTS.md",
".claude",
".claude-plugin",
"plugins",
".releaserc.json",
"openspec",
".github"
]
}
}