Files
djledda-web/deno.json
2025-12-26 14:16:16 +01:00

37 lines
1.1 KiB
JSON

{
"tasks": {
"start": "deno --allow-read --allow-net --allow-env --allow-write --allow-run main.ts",
"watch": "deno --watch --allow-read --allow-net --allow-env --allow-write --allow-run main.ts",
"install": "deno install --entrypoint deps.ts"
},
"fmt": {
"lineWidth": 120,
"indentWidth": 4
},
"imports": {
"@b-fuze/deno-dom": "jsr:@b-fuze/deno-dom@^0.1.56",
"@deno/emit": "jsr:@deno/emit@^0.46.0",
"@std/fs": "jsr:@std/fs@^1.0.20",
"@std/http": "jsr:@std/http@^1.0.22",
"@std/path": "jsr:@std/path@^1.1.3",
"vue": "npm:vue@3.6.0-beta.1",
"vue-router": "npm:vue-router@4.4.5",
"vue/jsx-runtime": "npm:vue/jsx-runtime",
"@vue/devtools-api": "npm:@vue/devtools-api",
"@/": "./app/"
},
"nodeModulesDir": "auto",
"compilerOptions": {
"jsx": "react-jsx",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"jsxImportSource": "vue",
"lib": [
"deno.ns",
"esnext",
"dom",
"dom.iterable"
]
}
}