-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
32 lines (32 loc) · 1.18 KB
/
deno.json
File metadata and controls
32 lines (32 loc) · 1.18 KB
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
{
"name": "@ryu/md2pdf",
"version": "0.9.0",
"exports": "./src/cli.ts",
"tasks": {
"test": "deno test --doc -A",
"cli": "deno -A @ryu/md2pdf --",
"dev": "deno -A @ryu/md2pdf -- README.md",
"dev:all": "deno -A @ryu/md2pdf -w --stylesheet=src/testdata/bluecode.css -- README.md",
"dev:help": "deno -A @ryu/md2pdf --help",
"dev:version": "deno -A @ryu/md2pdf --version",
"dev:css": "deno -A @ryu/md2pdf -- ./src/testdata/bluecode.md",
"dev:invalidcss": "deno -A @ryu/md2pdf --stylesheet=src/testdata/redcode.css -- README.md",
"dev:watch": "deno -A @ryu/md2pdf --watch -- README.md"
},
"imports": {
"playwright-core": "npm:playwright-core@^1.55.0",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/cli": "jsr:@std/cli@^1.0.17",
"@std/fmt": "jsr:@std/fmt@^1.0.7",
"@std/front-matter": "jsr:@std/front-matter@^1.0.9",
"@std/path": "jsr:@std/path@^1.0.9",
"@std/yaml": "jsr:@std/yaml@^1.0.6",
"md4w": "npm:md4w@^0.2.6",
"node-html-parser": "npm:node-html-parser@^7.0.1",
"shiki": "npm:shiki@^4.0.2"
},
"fmt": {
"proseWrap": "preserve"
},
"exclude": [".gitattributes", ".github", "src/testdata", "**/*/*_test.ts"]
}