diff --git a/CHANGELOG.md b/CHANGELOG.md
index 32e4011..c191229 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](http://keepachangelog.com/)
 and this project adheres to [Semantic Versioning](http://semver.org/).
 
+## [0.12.7] - Unreleased
+### Fixed
+- Updated dependencies.
+
 ## [0.12.6] - 2024-05-22
 ### Fixed
 - Fix code transformation [#64].
@@ -225,6 +229,7 @@ First version
 [#56]: https://github.com/oscarotero/vento/issues/56
 [#64]: https://github.com/oscarotero/vento/issues/64
 
+[0.12.7]: https://github.com/oscarotero/vento/compare/v0.12.6...HEAD
 [0.12.6]: https://github.com/oscarotero/vento/compare/v0.12.5...v0.12.6
 [0.12.5]: https://github.com/oscarotero/vento/compare/v0.12.4...v0.12.5
 [0.12.4]: https://github.com/oscarotero/vento/compare/v0.12.2...v0.12.4
diff --git a/bench/bench.ts b/bench/bench.ts
index 88fae23..f2fbe72 100644
--- a/bench/bench.ts
+++ b/bench/bench.ts
@@ -1,6 +1,6 @@
 import vento from "../mod.ts";
 import nunjucks from "npm:nunjucks@3.2.4";
-import { Liquid } from "npm:liquidjs@10.13.0";
+import { Liquid } from "npm:liquidjs@10.13.1";
 import { Eta } from "https://deno.land/x/eta@v3.4.0/src/index.ts";
 
 const env = vento({
diff --git a/deno.json b/deno.json
index 17c169b..4c64f85 100644
--- a/deno.json
+++ b/deno.json
@@ -4,10 +4,14 @@
     "bench": "deno bench --allow-read",
     "docs": "cd docs && deno task serve",
     "build": "deno run --allow-run=npm --allow-env --allow-sys --allow-read --allow-write --allow-net=deno.land scripts/build_npm.ts",
-    "update-deps": "rm -rf npm && deno run -A 'https://deno.land/x/nudd@v0.2.3/cli.ts' update deno.json **/*.ts"
+    "update-deps": "rm -rf npm && deno run -A 'https://deno.land/x/nudd@v0.2.4/cli.ts' update deno.json **/*.ts"
   },
   "lock": false,
   "fmt": {
-    "exclude": ["CHANGELOG.md", "npm", "docs"]
+    "exclude": [
+      "CHANGELOG.md",
+      "npm",
+      "docs"
+    ]
   }
 }
diff --git a/deps.ts b/deps.ts
index c7d9175..b9ed8c9 100644
--- a/deps.ts
+++ b/deps.ts
@@ -1,7 +1,7 @@
-export * as path from "https://deno.land/std@0.224.0/path/mod.ts";
-export * as html from "https://deno.land/std@0.224.0/html/mod.ts";
+export * as path from "jsr:@std/path@0.224.0";
+export * as html from "jsr:@std/html@0.224.0";
 
 export * as astring from "https://deno.land/x/astring@v1.8.6/src/astring.js";
-export * as meriyah from "npm:meriyah@4.4.2";
+export * as meriyah from "npm:meriyah@4.4.3";
 export * as walker from "npm:estree-walker@3.0.3";
 export type * as ESTree from "npm:@types/estree@1.0.5";
diff --git a/scripts/build_npm.ts b/scripts/build_npm.ts
index ee82f02..5eadcb2 100644
--- a/scripts/build_npm.ts
+++ b/scripts/build_npm.ts
@@ -1,4 +1,4 @@
-import { build } from "jsr:@deno/dnt@0.41.1";
+import { build } from "jsr:@deno/dnt@0.41.2";
 import { emptyDir } from "jsr:@std/fs@0.229.1/empty-dir";
 
 await emptyDir("./npm");