-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
42 lines (42 loc) · 1.16 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
{
"name": "@maximilian-hammerl/deno-project-config-check",
"version": "0.2.0",
"license": "MIT",
"lock": false,
"tasks": {
"format": "deno fmt",
"format-check": "deno fmt --check",
"lint": "deno lint --fix",
"lint-check": "deno lint",
"type-check": "deno check **/*.ts",
"validate": "deno task format && deno task lint && deno task type-check",
"validate-check": "deno task format-check && deno task lint-check && deno task type-check",
"dev": "deno run --allow-read --allow-write --allow-run main.ts",
"download-deno-config-file-json-schema": "./scripts/download-deno-config-file-json-schema.sh",
"compile-deno-config-file-json-schema-to-typescript-types": "./scripts/compile-deno-config-file-json-schema-to-typescript-types.sh"
},
"imports": {
"@std/cli": "jsr:@std/cli@^1.0.13",
"@std/jsonc": "jsr:@std/jsonc@^1.0.1"
},
"lint": {
"rules": {
"tags": [
"recommended",
"jsr"
]
}
},
"fmt": {
"semiColons": false,
"singleQuote": true
},
"exports": "./src/main.ts",
"publish": {
"include": [
"LICENSE.md",
"README.md",
"src/**/*.ts"
]
}
}