{
  "type": "module",
  "name": "@stackpress/idea-transformer",
  "version": "0.10.8",
  "license": "Apache-2.0",
  "description": "A programmatical command line interface used by projects and that calls on external transformers to make relevant code",
  "author": "Chris <chris@incept.asia>",
  "homepage": "https://github.com/stackpress/idea",
  "bugs": "https://github.com/stackpress/idea/issues",
  "repository": "stackpress/idea",
  "keywords": [
    "ts",
    "typescript",
    "cjs",
    "esm",
    "generator",
    "CLI",
    "ORM",
    "AI",
    "graphql",
    "idea",
    "stackpress"
  ],
  "main": "./cjs/index.js",
  "module": "./esm/index.js",
  "types": "./cjs/index.d.ts",
  "exports": {
    ".": {
      "require": "./cjs/index.js",
      "import": "./esm/index.js"
    },
    "./types": {
      "require": "./cjs/types.js",
      "import": "./esm/types.js"
    },
    "./Terminal": {
      "require": "./cjs/Terminal.js",
      "import": "./esm/Terminal.js"
    },
    "./Transformer": {
      "require": "./cjs/Transformer.js",
      "import": "./esm/Transformer.js"
    }
  },
  "typesVersions": {
    "*": {
      "index": [
        "./cjs/index.d.ts"
      ],
      "types": [
        "./cjs/types.d.ts"
      ],
      "Terminal": [
        "./cjs/Terminal.d.ts"
      ],
      "Transformer": [
        "./cjs/Transformer.d.ts"
      ]
    }
  },
  "files": [
    "cjs",
    "esm",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "yarn build:tsc && yarn build:pkg",
    "build:pkg": "yarn build:pkg:cjs && yarn build:pkg:esm",
    "build:pkg:cjs": "echo '{\"type\": \"commonjs\"}' > cjs/package.json",
    "build:pkg:esm": "echo '{\"type\": \"module\"}' > esm/package.json",
    "build:tsc": "yarn build:tsc:cjs && yarn build:tsc:esm",
    "build:tsc:cjs": "tsc -p ./tsconfig.cjs.json",
    "build:tsc:esm": "tsc -p ./tsconfig.esm.json",
    "test": "ts-mocha -r tsx tests/*.test.ts"
  },
  "dependencies": {
    "@stackpress/idea-parser": "0.10.8"
  },
  "devDependencies": {
    "@types/chai": "4.3.20",
    "@types/mocha": "10.0.10",
    "@types/node": "25.3.5",
    "chai": "4.5.0",
    "mocha": "10.8.2",
    "ts-mocha": "10.0.0",
    "ts-morph": "27.0.2",
    "ts-node": "10.9.2",
    "tsx": "4.21.0",
    "typescript": "5.9.3"
  }
}
