-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
45 lines (44 loc) · 1.05 KB
/
deno.json
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
{
"name": "@teomrd/miropad",
"exports": "./index.js",
"version": "2.15.20",
"license": "GPL-3.0-only",
"author": "teomrd <[email protected]>",
"repository": "https://github.com/teomrd/MiroPad.git",
"tasks": {
"compile": "deno check src",
"lint": "deno lint src/"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"@types/textarea-caret": "npm:@types/textarea-caret@^3.0.3",
"@lhci/cli": "npm:@lhci/[email protected]",
"esbuild": "npm:esbuild@^0.24.0",
"workbox": "npm:workbox@^0.0.0",
"workbox-cli": "npm:workbox-cli@^7.3.0"
},
"lint": {
"include": ["src/"],
"exclude": ["src/assets/", "src/css/"],
"rules": {
"tags": ["recommended"]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"include": ["src/"],
"exclude": ["src/assets/"]
},
"exclude": [
"out/",
"dist/"
],
"compilerOptions": {
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"]
}
}