{
  "name": "create-ts-node",
  "version": "3.1.0",
  "description": "Create a new Node.js project with TypeScript and ESM",
  "author": "Santeri Hiltunen <github@me.hilzu.moe> (https://hilzu.moe/)",
  "license": "0BSD",
  "keywords": [
    "create",
    "init",
    "typescript",
    "node",
    "template",
    "starter",
    "project",
    "boilerplate",
    "esm"
  ],
  "homepage": "https://github.com/Hilzu/create-ts-node#create-ts-node",
  "bugs": "https://github.com/Hilzu/create-ts-node/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Hilzu/create-ts-node.git"
  },
  "type": "module",
  "bin": {
    "create-ts-node": "src/bin.mjs"
  },
  "main": "src/main.mjs",
  "engines": {
    "node": ">=24.11.0"
  },
  "scripts": {
    "format": "prettier --write .",
    "test": "concurrently --group node:test:* && node --run test-node",
    "test-node": "node --test --test-reporter spec src/test.mjs",
    "test:format": "prettier --check .",
    "test:lint": "eslint .",
    "update-template-deps": "(cd template && npx npm-check-updates@latest --upgrade)"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "concurrently": "^9.2.1",
    "eslint": "^10.3.0",
    "eslint-plugin-n": "^18.0.1",
    "globals": "^17.6.0",
    "prettier": "3.8.3"
  }
}
