-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
55 lines (55 loc) · 1.91 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "prettier-plugin-vitepress",
"version": "0.0.8",
"description": "a prettier plugin to format vue in markdown syntax used in vitepress",
"keywords": [
"prettier",
"vitepress",
"vue",
"markdown"
],
"repository": {
"type": "git",
"url": "git+https://github.com/brc-dd/prettier-plugin-vitepress.git"
},
"funding": "https://github.com/sponsors/brc-dd",
"license": "MIT",
"author": "Divyansh Singh <[email protected]> (https://github.com/brc-dd)",
"exports": "./src/index.ts",
"compilerOptions": {
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true
},
"tasks": {
"dev": "deno run -A --watch=src ./scripts/build.ts",
"build": "deno task patch && deno run -A ./scripts/build.ts",
"format": "deno fmt",
"format:fail": "deno fmt --check",
"lint": "deno lint --fix",
"lint:fail": "deno lint",
"test": "deno test -A",
"test:watch": "deno test -A --watch",
"type": "deno check **/*.ts",
"check": "deno task patch && deno task format:fail && deno task lint:fail && deno task type && deno task test",
"patch": "deno run -A ./scripts/patch.ts",
"release": "deno run -A --reload https://raw.githubusercontent.com/globalbrain/hado/main/scripts/release.ts",
"update": "deno run -A --reload https://raw.githubusercontent.com/globalbrain/hado/main/scripts/update.ts"
},
"fmt": {
"lineWidth": 100,
"proseWrap": "preserve",
"semiColons": false,
"singleQuote": true
},
"imports": {
"@ast-grep/napi": "npm:@ast-grep/napi@^0.32.2",
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.11.1",
"@std/assert": "jsr:@std/assert@^1.0.10",
"@std/fs": "jsr:@std/fs@^1.0.8",
"esbuild": "npm:esbuild@^0.24.2",
"prettier": "npm:prettier@^3.4.2",
"typescript": "npm:typescript@^5.7.2",
"unplugin-isolated-decl": "npm:unplugin-isolated-decl@^0.10.2"
}
}