Files
memorium/deno.json
2026-01-10 15:06:43 +01:00

85 lines
2.9 KiB
JSON

{
"nodeModulesDir": "manual",
"tasks": {
"check": "deno fmt --check && deno lint && deno check",
"start": "deno run --env-file -A main.ts",
"db": "deno run --env-file -A npm:drizzle-kit",
"update": "deno run -A -r jsr:@fresh/update .",
"dev": "vite",
"build": "vite build",
"preview": "deno serve -A _fresh/server.js"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"],
"imports": {
"@cmd-johnson/oauth2-client": "jsr:@cmd-johnson/oauth2-client@^2.0.0",
"@components": "./components",
"@components/": "./components/",
"@denosaurs/emoji": "jsr:@denosaurs/emoji@^0.3.1",
"@islands": "./islands",
"@islands/": "./islands/",
"@lib": "./lib",
"@lib/": "./lib/",
"@libsql/client": "npm:@libsql/client@^0.14.0",
"@openai/openai": "jsr:@openai/openai@^6.16.0",
"@preact-icons/tb": "jsr:@preact-icons/tb@^1.0.14",
"@std/fs": "jsr:@std/fs@^1.0.21",
"@std/http": "jsr:@std/http@^1.0.23",
"@std/media-types": "jsr:@std/media-types@^1.1.0",
"@std/yaml": "jsr:@std/yaml@^1.0.10",
"@types/jsdom": "npm:@types/jsdom@^27.0.0",
"@types/turndown": "npm:@types/turndown@^5.0.6",
"@zaubrik/djwt": "jsr:@zaubrik/djwt@^3.0.2",
"csstype": "npm:csstype@^3.2.3",
"defuddle": "npm:defuddle@^0.6.6",
"drizzle-kit": "npm:drizzle-kit@^0.30.6",
"drizzle-orm": "npm:drizzle-orm@^0.38.4",
"fuzzysort": "npm:fuzzysort@^3.1.0",
"grammy": "npm:grammy@^1.39.2",
"jsdom": "npm:jsdom@^27.4.0",
"moviedb-promise": "npm:moviedb-promise@^4.0.7",
"parse-ingredient": "npm:parse-ingredient@^1.3.1",
"playwright": "npm:playwright@^1.57.0",
"playwright-extra": "npm:playwright-extra@^4.3.6",
"gfm": "jsr:@deno/gfm@0.11.0",
"prismjs": "npm:prismjs@^1.30.0",
"puppeteer-extra-plugin-stealth": "npm:puppeteer-extra-plugin-stealth@^2.11.2",
"sharp": "npm:sharp@^0.34.5",
"@tailwindcss/vite": "npm:@tailwindcss/vite@^4.1.12",
"camelcase-css": "npm:camelcase-css@2.0.1",
"thumbhash": "npm:thumbhash@^0.1.1",
"tsx": "npm:tsx@^4.21.0",
"turndown": "npm:turndown@^7.2.2",
"zod": "npm:zod@^3.25.76",
"fresh": "jsr:@fresh/core@^2.2.0",
"preact": "npm:preact@^10.27.2",
"@preact/signals": "npm:@preact/signals@^2.5.0",
"@fresh/plugin-vite": "jsr:@fresh/plugin-vite@^1.0.8",
"vite": "npm:vite@^7.3.1",
"tailwindcss": "npm:tailwindcss@^4.1.18"
},
"compilerOptions": {
"lib": ["dom", "dom.asynciterable", "dom.iterable", "deno.ns"],
"jsx": "react-jsx",
"jsxImportSource": "preact",
"jsxPrecompileSkipElements": [
"a",
"img",
"source",
"body",
"html",
"head",
"title",
"meta",
"script",
"link",
"style",
"base",
"noscript",
"template"
],
"types": ["vite/client"]
},
"allowScripts": { "allow": ["npm:esbuild@0.27.2", "npm:sharp@0.34.5"] }
}