-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathdeno.json
More file actions
36 lines (36 loc) · 805 Bytes
/
deno.json
File metadata and controls
36 lines (36 loc) · 805 Bytes
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
{
"version": "2.3.0",
"compilerOptions": {
"lib": ["deno.window"],
"strict": true
},
"lint": {
"rules": {
"tags": ["recommended"]
},
"exclude": ["node_modules/", ".git/"]
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"exclude": ["node_modules/", ".git/"]
},
"tasks": {
"start": "deno run --allow-all index.ts",
"dev": "deno run --allow-all --watch index.ts",
"lint": "deno lint",
"fmt": "deno fmt",
"check": "deno check index.ts"
},
"imports": {
"discord.js": "npm:discord.js@14.14.1",
"@anthropic-ai/claude-agent-sdk": "npm:@anthropic-ai/claude-agent-sdk@0.2.45"
},
"permissions": {
"allow-all": true
}
}