-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
29 lines (29 loc) · 1.61 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
{
"name": "@ryu/md2pdf",
"version": "0.5.1",
"exports": {
".": "./src/md-to-pdf.ts",
"./cli": "./src/cli.ts"
},
"tasks": {
"test": "deno test --doc -A",
"cli": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts --",
"dev": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts -- README.md",
"dev:all": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts -w --stylesheet=src/testdata/bluecode.css -- README.md",
"dev:help": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts --help",
"dev:css": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts -- ./src/testdata/bluecode.md",
"dev:invalidcss": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts --stylesheet=src/testdata/redcode.css -- README.md",
"dev:watch": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts --watch -- README.md"
},
"imports": {
"@astral/astral": "jsr:@astral/astral@^0.4.5",
"@std/assert": "jsr:@std/assert@^1.0.2",
"@std/cli": "jsr:@std/[email protected]",
"@std/fmt": "jsr:@std/fmt@^1",
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"md4w": "npm:md4w@^0.2.6"
},
"exclude": [".gitattributes", ".github", "src/testdata", "**/*/*_test.ts"]
}