| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "nodeModulesDir": "manual",
- "tasks": {
- "check": "deno fmt --check . && deno lint . && deno check",
- "dev": "vite",
- "build": "vite build",
- "start": "deno serve -A _fresh/server.js",
- "update": "deno run -A -r jsr:@fresh/update ."
- },
- "lint": {
- "rules": {
- "tags": [
- "fresh",
- "recommended"
- ]
- }
- },
- "exclude": [
- "**/_fresh/*"
- ],
- "imports": {
- "@std/async": "jsr:@std/async@^1.2.0",
- "@std/crypto": "jsr:@std/crypto@^1.0.5",
- "@std/dotenv": "jsr:@std/dotenv@^0.225.6",
- "@std/encoding": "jsr:@std/encoding@^1.0.10",
- "@std/http": "jsr:@std/http@^1.0.25",
- "fresh": "jsr:@fresh/core@^2.2.2",
- "preact": "npm:preact@^10.27.2",
- "@preact/signals": "npm:@preact/signals@^2.5.0",
- "showdown": "npm:showdown@^2.1.0",
- "@fresh/plugin-vite": "jsr:@fresh/plugin-vite@^1.0.8",
- "usid": "npm:usid@^2.0.0",
- "vite": "npm:vite@^7.1.3",
- "utils/": "./utils/"
- },
- "compilerOptions": {
- "lib": [
- "dom",
- "dom.asynciterable",
- "dom.iterable",
- "deno.ns"
- ],
- "jsx": "precompile",
- "jsxImportSource": "preact",
- "jsxPrecompileSkipElements": [
- "a",
- "img",
- "source",
- "body",
- "html",
- "head",
- "title",
- "meta",
- "script",
- "link",
- "style",
- "base",
- "noscript",
- "template"
- ],
- "types": [
- "vite/client"
- ]
- }
- }
|