Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@ updates:
- '*'
cooldown:
default-days: 7
ignore:
- dependency-name: remark-math
update-types:
- version-update:semver-major
- dependency-name: typescript
update-types:
- version-update:semver-major
- dependency-name: vite
update-types:
- version-update:semver-major
- dependency-name: '@sveltejs/vite-plugin-svelte'
update-types:
- version-update:semver-major
reviewers:
- santiagosayshey
labels:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
Expand Down Expand Up @@ -80,6 +81,7 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
Expand Down
1 change: 0 additions & 1 deletion docs/frontend/markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ tree. Newer versions expect a micromark-based pipeline and fail silently or loud
| Plugin | Version pin | Purpose |
| --------------------- | ----------- | ------------------------------------------------- |
| `remark-math` | `3.x` | Parses `$...$` and `$$...$$` math syntax |
| `remark-footnotes` | `2.x` | Parses `[^1]` footnote references and definitions |
| `rehype-katex-svelte` | current | Renders math to KaTeX HTML escaped for Svelte |
| `rehype-slug` | current | Heading ids for the table of contents and anchors |

Expand Down
51 changes: 25 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,44 +28,43 @@
"worker:migrate": "wrangler d1 migrations apply dictionarry-clicks --local -c worker/wrangler.jsonc"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260609.1",
"@cloudflare/workers-types": "^5.20260804.1",
"@eslint/js": "^10.0.1",
"@icons-pack/svelte-simple-icons": "^7.2.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.57.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.2",
"@sveltejs/kit": "^2.70.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/vite": "^4.3.3",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24",
"better-sqlite3": "^12.10.0",
"eslint": "^10.4.0",
"@types/node": "^26",
"better-sqlite3": "^13.0.2",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.0",
"globals": "^17.4.0",
"katex": "^0.17.0",
"mdsvex": "^0.12.7",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"eslint-plugin-svelte": "^3.22.0",
"globals": "^17.9.0",
"katex": "^0.18.1",
"mdsvex": "^0.12.8",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"rehype-katex-svelte": "^1.2.0",
"remark-footnotes": "2.0.0",
"remark-math": "3.0.0",
"svelte": "^5.55.2",
"svelte-check": "^4.4.6",
"tailwindcss": "^4.2.2",
"tsx": "^4.22.4",
"svelte": "^5.56.8",
"svelte-check": "^4.7.4",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.5",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.7",
"vitest": "^4.1.8",
"wrangler": "^4.99.0"
"typescript-eslint": "^8.66.0",
"vite": "^7.3.6",
"vitest": "^4.1.10",
"wrangler": "^4.118.0"
},
"dependencies": {
"@lucide/svelte": "^1.17.0",
"marked": "^18.0.5",
"@lucide/svelte": "^1.28.0",
"marked": "^18.0.9",
"plyr": "^3.8.4",
"rehype-slug": "^6.0.0",
"shiki": "^4.2.0",
"shiki": "^4.4.1",
"yaml": "2.9.0"
}
}
Loading