my-website-base/deno.json
2024-12-31 22:12:26 +02:00

24 lines
674 B
JSON

{
"tasks": {
"dev": "deno run --watch main.ts"
},
"imports": {
"@std/http": "jsr:@std/http@^1.0.9",
"@std/path": "jsr:@std/path@^1.0.7",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"highlight.js": "npm:highlight.js@^11.10.0",
"markdown-it": "npm:markdown-it@^14.1.0",
"markdown-it-front-matter": "npm:markdown-it-front-matter@^0.2.4",
"pug": "npm:pug@^3.0.3",
"!lib": "./src/lib.ts"
},
"lint": {
"rules": {
"exclude": [ "no-explicit-any", "no-cond-assign", "require-await", "no-regex-spaces", "no-empty" ]
}
},
"fmt": {
"indentWidth": 4
}
}