-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
39 lines (39 loc) · 961 Bytes
/
deno.json
File metadata and controls
39 lines (39 loc) · 961 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
34
35
36
37
38
39
{
"name": "@debutter/trufflebyte",
"version": "1.4.2",
"license": "MIT",
"tasks": {
"test": "deno test -A",
"dev": "deno test -A --watch",
"bundle": "deno run -A bundle.ts",
"fix": "deno lint && deno fmt && deno publish --allow-dirty --dry-run",
"web": "deno run -A bundle.ts --watch & deno serve -A server.ts",
"publish": "deno task fix && deno task test && deno publish"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"core-js": "npm:core-js@^3.41.0"
},
"exports": "./src/index.ts",
"publish": {
"exclude": ["test/", "dist/", "public/", "bundle.ts", "server.ts"]
},
"lint": {
"exclude": ["./public/", "./dist/"],
"rules": {
"tags": ["recommended"],
"include": [
"explicit-function-return-type",
"explicit-module-boundary-types",
"eqeqeq",
"single-var-declarator",
"verbatim-module-syntax"
]
}
},
"fmt": {
"exclude": ["./public/", "./dist/"],
"indentWidth": 4,
"useTabs": false
}
}