deno.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "nodeModulesDir": "manual",
  3. "tasks": {
  4. "check": "deno fmt --check . && deno lint . && deno check",
  5. "dev": "vite",
  6. "build": "vite build",
  7. "start": "deno serve -A _fresh/server.js",
  8. "update": "deno run -A -r jsr:@fresh/update ."
  9. },
  10. "lint": {
  11. "rules": {
  12. "tags": [
  13. "fresh",
  14. "recommended"
  15. ]
  16. }
  17. },
  18. "exclude": [
  19. "**/_fresh/*"
  20. ],
  21. "imports": {
  22. "@std/async": "jsr:@std/async@^1.2.0",
  23. "@std/crypto": "jsr:@std/crypto@^1.0.5",
  24. "@std/dotenv": "jsr:@std/dotenv@^0.225.6",
  25. "@std/encoding": "jsr:@std/encoding@^1.0.10",
  26. "@std/http": "jsr:@std/http@^1.0.25",
  27. "@types/showdown": "npm:@types/showdown@^2.0.6",
  28. "fresh": "jsr:@fresh/core@^2.2.2",
  29. "preact": "npm:preact@^10.27.2",
  30. "@preact/signals": "npm:@preact/signals@^2.5.0",
  31. "showdown": "npm:showdown@^2.1.0",
  32. "@fresh/plugin-vite": "jsr:@fresh/plugin-vite@^1.0.8",
  33. "usid": "npm:usid@^2.0.0",
  34. "vite": "npm:vite@^7.1.3",
  35. "@tailwindcss/vite": "npm:@tailwindcss/vite@^4.2.2",
  36. "tailwindcss": "npm:tailwindcss@^4.2.2",
  37. "utils/": "./utils/"
  38. },
  39. "compilerOptions": {
  40. "lib": [
  41. "dom",
  42. "dom.asynciterable",
  43. "dom.iterable",
  44. "deno.ns"
  45. ],
  46. "jsx": "precompile",
  47. "jsxImportSource": "preact",
  48. "jsxPrecompileSkipElements": [
  49. "a",
  50. "img",
  51. "source",
  52. "body",
  53. "html",
  54. "head",
  55. "title",
  56. "meta",
  57. "script",
  58. "link",
  59. "style",
  60. "base",
  61. "noscript",
  62. "template"
  63. ],
  64. "types": [
  65. "vite/client"
  66. ]
  67. }
  68. }