-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeno.jsonc
More file actions
38 lines (38 loc) · 1.08 KB
/
deno.jsonc
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "@cosense/types",
"version": "0.0.0",
"tasks": {
"fix": "deno fmt && deno lint --fix && deno test --allow-read --doc --parallel --shuffle && deno publish --dry-run --allow-dirty",
"check": "deno fmt --check && deno lint && deno test --allow-read --doc --parallel --shuffle && deno publish --dry-run",
"coverage": "deno test --allow-read=./ --parallel --shuffle --coverage && deno coverage --html",
"doc": "deno doc --html rest.ts userscript.ts websocket.ts",
"npm:build": "deno run -A scripts/build_npm.ts",
"npm:check": {
"command": "cd npm && npm publish --provenance --access=public --dry-run",
"dependencies": [
"npm:build"
]
}
},
"imports": {
"@std/testing/types": "jsr:@std/testing@0/types",
"@deno/dnt": "jsr:@deno/dnt@^0.42.3"
},
"exports": {
"./rest": "./rest.ts",
"./userscript": "./userscript.ts",
"./websocket": "./websocket.ts"
},
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"esnext"
]
},
"exclude": [
"coverage/",
"docs/",
"npm/"
]
}