{
  "name": "@nodeboot/aot",
  "version": "1.4.0",
  "description": "Node-Boot module for Ahead-of-Time (AOT) compilation. Generates node-boot beans and OpenAPI schemas at compile time",
  "author": "Manuel Santos <ney.br.santos@gmail.com>",
  "license": "MIT",
  "keywords": [
    "boot",
    "aot",
    "beans",
    "schema"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/nodejs-boot/node-boot.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "dependencies": {
    "typescript-json-schema": "^0.65.1"
  },
  "files": [
    "dist",
    "package.json",
    "README.md"
  ],
  "bin": {
    "node-boot-aot": "./dist/scripts/node-boot-aot.js"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "clean:build": "rimraf ./dist",
    "dev": "nodemon",
    "lint": "eslint . --ext .js,.ts",
    "lint:fix": "pnpm lint --fix",
    "format": "prettier --check .",
    "format:fix": "prettier --write .",
    "test": "jest --passWithNoTests",
    "typecheck": "tsc"
  }
}