-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
41 lines (41 loc) · 1.11 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
{
"name": "@dldc/canvas",
"version": "2.0.0",
"exports": "./mod.ts",
"imports": {
"@chialab/esbuild-plugin-html": "npm:@chialab/esbuild-plugin-html@^0.18.2",
"@dldc/humpf": "jsr:@dldc/humpf@^7.0.0",
"@dldc/pubsub": "jsr:@dldc/pubsub@^7.0.1",
"@dldc/stack": "jsr:@dldc/stack@^6.0.2",
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.10.3",
"@std/expect": "jsr:@std/expect@^0.224.1",
"esbuild": "npm:esbuild@^0.21.3",
"esbuild-server": "npm:esbuild-server@^0.3.0"
},
"compilerOptions": {
"lib": [
"deno.window",
"dom"
]
},
"tasks": {
"test": "deno test --allow-read .",
"test:watch": "deno test --watch",
"bump": "deno run -A jsr:@mys/bump@1",
"update": "deno run --allow-read=. --allow-write=. --allow-net https://deno.land/x/[email protected]/main.ts *.ts deno.jsonc",
"check": "deno fmt --check . && deno lint . && deno task test",
"example:dev": "deno run -A ./example/server.ts"
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any"
]
}
},
"publish": {
"exclude": [
"example"
]
}
}