-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
30 lines (30 loc) · 924 Bytes
/
deno.json
File metadata and controls
30 lines (30 loc) · 924 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
{
"name": "@odysseus0/linear",
"version": "0.1.1",
"exports": "./src/main.ts",
"tasks": {
"dev": "deno run --allow-all src/main.ts",
"compile": "deno compile --allow-all --output linear src/main.ts",
"check": "deno check src/main.ts",
"test": "deno test --allow-all",
"fmt": "deno fmt",
"lint": "deno lint"
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.8",
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.8",
"@cliffy/table": "jsr:@cliffy/table@^1.0.0-rc.8",
"@cliffy/ansi": "jsr:@cliffy/ansi@^1.0.0-rc.8",
"@linear/sdk": "npm:@linear/sdk@^75.0.0",
"string-width": "npm:string-width@8.1.1",
"wrap-ansi": "npm:wrap-ansi@9.0.2",
"@std/assert": "jsr:@std/assert",
"@std/toml": "jsr:@std/toml",
"@std/fmt": "jsr:@std/fmt",
"@std/path": "jsr:@std/path",
"@std/fs": "jsr:@std/fs"
},
"fmt": {
"semiColons": false
}
}