{
  "name": "presetter",
  "version": "9.1.0",
  "description": "Make project configurations clean with presets",
  "keywords": [
    "config",
    "scaffold",
    "package",
    "project",
    "template",
    "toolkit",
    "tools"
  ],
  "homepage": "https://github.com/alvis/presetter#readme",
  "bugs": {
    "url": "https://github.com/alvis/presetter/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alvis/presetter.git"
  },
  "license": "MIT",
  "author": "Alvis HT Tang <alvis@hilbert.space>",
  "type": "module",
  "imports": {
    "#preset": "./lib/preset/index.js",
    "#preset/config": "./lib/preset/config/index.js",
    "#preset/resolution": "./lib/preset/resolution/index.js",
    "#template": "./lib/template/index.js",
    "#utilities": "./lib/utilities/index.js",
    "#*": "./lib/*.js"
  },
  "exports": {
    ".": "./lib/index.js"
  },
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "bin": {
    "presetter": "./bin/cli.js",
    "run": "./bin/run.js",
    "run-p": "./bin/run-p.js",
    "run-s": "./bin/run-s.js"
  },
  "dependencies": {
    "@npmcli/run-script": "^10.0.0",
    "callsite-record": "^4.1.0",
    "chalk": "^5.3.0",
    "debug": "^4.3.5",
    "execa": "^9.3.0",
    "find-up-simple": "^1.0.0",
    "globby": "^16.0.0",
    "jiti": "^2.4.0",
    "js-yaml": "^4.1.0",
    "listr2": "^10.0.0",
    "pupa": "^3.1.0",
    "sh-syntax": "^0.5.0",
    "source-map-support": "^0.5.0",
    "yargs": "^18.0.0",
    "yargs-parser": "^22.0.0",
    "@presetter/types": "9.1.0"
  },
  "devDependencies": {
    "@types/debug": "^4.0.0",
    "@types/js-yaml": "^4.0.0",
    "@types/node": "^24.0.0",
    "@types/yargs": "^17.0.0",
    "type-fest": "^5.0.0",
    "@presetter/preset-essentials": "9.1.0",
    "@presetter/preset-esm": "9.1.0",
    "@presetter/preset-strict": "9.1.0"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "scripts": {
    "build": "npm run script -- build",
    "clean": "npm run script -- clean",
    "lint": "npm run script -- lint --",
    "script": "tsx --conditions=development --eval \"process.argv = [...process.argv.slice(0, 2), 'run', ...process.argv.slice(2)]; import('./src/executable/index.ts');\" -- run --template",
    "stage": "npm run script -- stage --",
    "test": "npm run script -- test --",
    "test:coverage": "npm run script -- test:coverage --",
    "test:watch": "npm run script -- test:watch --",
    "typecheck": "npm run script -- typecheck --"
  }
}