mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Patrick Kollitsch
17.25.2026 545cd9cf311462115d9e1c4580ee00d2e2cf45e0
build(fix): addd missing dependencies
3 files modified
42 ■■■■ changed files
.nvmrc 2 ●●● patch | view | raw | blame | history
package-lock.json 29 ●●●●● patch | view | raw | blame | history
package.json 11 ●●●● patch | view | raw | blame | history
.nvmrc
@@ -1 +1 @@
24
25
package-lock.json
@@ -12,7 +12,8 @@
        "cssnano": "7.1.5",
        "postcss": "8.5.9",
        "postcss-preset-env": "11.2.1",
        "tachyons": "4.12.0"
        "tachyons": "4.12.0",
        "typescript": "6.0.3"
      },
      "devDependencies": {
        "@biomejs/biome": "2.4.12",
@@ -29,7 +30,8 @@
        "markdownlint-rule-relative-links": "5.1.0",
        "markdownlint-rule-search-replace": "1.2.0",
        "markdownlint-rule-title-case-style": "0.4.3",
        "simple-git-hooks": "2.13.1"
        "simple-git-hooks": "2.13.1",
        "tsc": "2.0.4"
      }
    },
    "node_modules/@azu/format-text": {
@@ -10519,6 +10521,16 @@
        "node": ">=8"
      }
    },
    "node_modules/tsc": {
      "version": "2.0.4",
      "resolved": "https://registry.npmjs.org/tsc/-/tsc-2.0.4.tgz",
      "integrity": "sha512-fzoSieZI5KKJVBYGvwbVZs/J5za84f2lSTLPYf6AGiIf43tZ3GNrI1QzTLcjtyDDP4aLxd46RTZq1nQxe7+k5Q==",
      "dev": true,
      "license": "MIT",
      "bin": {
        "tsc": "bin/tsc"
      }
    },
    "node_modules/tslib": {
      "version": "2.8.1",
      "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
@@ -10546,6 +10558,19 @@
      "dev": true,
      "license": "MIT"
    },
    "node_modules/typescript": {
      "version": "6.0.3",
      "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
      "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
      "license": "Apache-2.0",
      "bin": {
        "tsc": "bin/tsc",
        "tsserver": "bin/tsserver"
      },
      "engines": {
        "node": ">=14.17"
      }
    },
    "node_modules/uc.micro": {
      "version": "2.1.0",
      "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
package.json
@@ -45,7 +45,8 @@
    "markdownlint-rule-relative-links": "5.1.0",
    "markdownlint-rule-search-replace": "1.2.0",
    "markdownlint-rule-title-case-style": "0.4.3",
    "simple-git-hooks": "2.13.1"
    "simple-git-hooks": "2.13.1",
    "typescript": "6.0.3"
  },
  "scripts": {
    "hook:commit": "lint-staged --config .lintstagedrc.js",
@@ -53,13 +54,13 @@
    "lint:links": "lychee --config lychee.toml public",
    "lint:markdown": "markdownlint-cli2 docs/**/*.{md,mdx}",
    "lint:markdown:fix": "markdownlint-cli2 --fix docs/**/*.{md,mdx}",
    "prepare": "simple-git-hooks install",
    "release": "wireit",
    "release:pre": "wireit",
    "server": "wireit",
    "test:quickstart": "node scripts/test-hugo-quickstart.ts",
    "update:docs": "wireit",
    "test": "node scripts/test-hugo-quickstart.ts",
    "prepare": "simple-git-hooks install"
    "test:quickstart": "node scripts/test-hugo-quickstart.ts",
    "update:docs": "wireit"
  },
  "wireit": {
    "release": {
@@ -89,4 +90,4 @@
    "pre-push": "npm run hook:push"
  },
  "type": "module"
}
}