-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
33 lines (31 loc) · 804 Bytes
/
Copy pathdeno.json
File metadata and controls
33 lines (31 loc) · 804 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
{
"name": "@lesh/go2-webrtc-deno",
"version": "0.0.1",
"exports": "./src/mod.ts",
"nodeModulesDir": "auto",
"tasks": {
"test": "deno run -A src/examples/test.ts",
"check": "deno lint --fix && deno fmt && deno check src/mod.ts"
},
"imports": { "eventemitter2": "npm:eventemitter2@^6.4.9" },
"lint": {
"rules": {
"exclude": [
"require-await",
"ban-ts-comment",
"no-explicit-any",
"ban-types"
]
},
"exclude": ["src/connection/signaling/AES.ts"]
},
"fmt": {
"indentWidth": 4,
"useTabs": false,
"semiColons": false
},
"compilerOptions": {
"lib": ["dom", "deno.ns"]
},
"license": "MIT"
}