-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
41 lines (41 loc) · 1000 Bytes
/
deno.json
File metadata and controls
41 lines (41 loc) · 1000 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
40
41
{
"name": "@vsce/create",
"version": "1.0.0",
"exports": {
".": "./mod.ts"
},
"tasks": {
"check": "deno check *.ts",
"lint": "deno lint --fix",
"fmt": "deno fmt --config deno.json",
"test": "deno test --allow-all tests/",
"doc": "deno doc *.ts",
"publish-dry": "npx jsr publish --dry-run --allow-dirty"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/cli": "jsr:@std/cli@^1.0.0",
"@std/fmt/colors": "jsr:@std/fmt@^1.0.0/colors",
"@typed/vscode": "jsr:@typed/vscode@^1.101.0",
"@vsce/bundler": "jsr:@vsce/bundler@^1.0.0"
},
"fmt": {
"useTabs": true,
"lineWidth": 80,
"indentWidth": 4,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"*.ts",
"*.tsx",
"*.json",
"src/**/*.ts",
"tests/**/*.ts",
"examples/**/*.ts",
"scripts/**/*.ts"
]
}
}