{
  "name": "@takeshape/ssg",
  "version": "12.21.0",
  "description": "Static Site Generator",
  "homepage": "https://www.takeshape.io",
  "repository": {
    "type": "git",
    "url": "github.com:takeshape/takeshape.git"
  },
  "license": "MIT",
  "author": "asprouse",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@takeshape/vm-nunjucks": "0.3.1",
    "async-iterator-to-stream": "1.2.0",
    "bluebird": "3.7.2",
    "commonmark": "0.29.3",
    "d3-format": "1.4.5",
    "fs-extra": "9.1.0",
    "graphql": "16.10.0",
    "js-yaml": "3.14.1",
    "json-variables": "10.0.5",
    "lodash": "4.17.21",
    "minimize": "2.2.0",
    "moment": "2.30.1",
    "moment-timezone": "0.5.32",
    "node-fetch": "2.7.0",
    "pluralize": "8.0.0",
    "pumpify": "2.0.1",
    "resolve": "1.22.8",
    "@takeshape/prism": "12.21.0",
    "@takeshape/routing": "12.21.0",
    "@takeshape/streams": "12.21.0",
    "@takeshape/util": "12.21.0"
  },
  "devDependencies": {
    "@types/bluebird": "3.5.33",
    "@types/commonmark": "0.27.4",
    "@types/d3-format": "2.0.0",
    "@types/fs-extra": "9.0.5",
    "@types/js-yaml": "3.12.5",
    "@types/lodash": "4.17.20",
    "@types/moment-timezone": "0.5.30",
    "@types/node-fetch": "2.6.11",
    "@types/nunjucks": "3.1.3",
    "@types/pluralize": "0.0.29",
    "@types/pumpify": "1.4.1",
    "graphql-type-json": "0.3.2"
  },
  "engines": {
    "node": ">=24"
  },
  "publishConfig": {
    "access": "public",
    "provenance": false
  },
  "scripts": {
    "build": "tsc --project tsconfig.build.json",
    "prebuild:ci": "pnpm clean",
    "build:ci": "pnpm build --noCheck",
    "clean": "del-cli dist *.tsbuildinfo",
    "lint": "trap 'RC=1' ERR; pnpm lint:biome; pnpm lint:eslint; exit $RC",
    "lint:biome": "biome check ./",
    "lint:eslint": "eslint src -c ../../eslint.config.mjs",
    "lint:ci:biome": "mkdir -p \"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}\" && biome check ./ --diagnostic-level error --reporter=junit > \"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}/biome-results.xml\"",
    "lint:ci:eslint": "ESLINT_SUITE_NAME=${npm_package_name} ESLINT_JUNIT_OUTPUT=\"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}/eslint-results.xml\" pnpm lint:eslint --quiet --format ../../node_modules/eslint-junit/index.js",
    "test": "TZ=UTC vitest run",
    "test:ci": "TZ=UTC vitest run --reporter=default --reporter=junit --outputFile=\"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}/vitest-results.xml\" --coverage.enabled --coverage.reportsDirectory=\"${GITHUB_WORKSPACE}/coverage/${npm_package_name#*\\/}\"",
    "todo": "leasot 'src/**/*.{js,jsx,ts,tsx}'",
    "typecheck": "tsc --noEmit",
    "typecheck:ci": "mkdir -p  \"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}\" && tsc --noEmit --project tsconfig.build.json --pretty false | typescript-jest-junit-reporter | tee \"${GITHUB_WORKSPACE}/test-results/${npm_package_name#*\\/}/typescript-results.xml\""
  }
}