{
  "name": "@tsdiapi/{{name}}",
  "description": "{{description}}",
  "version": "0.0.1",
  "main": "output/index.js",
  "types": "output/index.d.ts",
  "type": "module",
  "scripts": {
    "build": "tsc"
  },
  {{#if author}}
  "author": "{{author}}",
  {{/if}}
  "engines": {
    "node": ">=18.19.0"
  },
  "keywords": [
    "tsdiapi"
  ],
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  {{#if giturl}}
  "repository": {
    "type": "git",
    "url": "{{giturl}}"
  },
  "homepage": "{{giturl}}",
  {{/if}}
  "files": [
    "output/",
    "README.md",
    "LICENSE.md",
    "tsdiapi.config.json",
    "files/",
    "generators/"
  ]
}