{
  "type": "module",
  "name": "@stackpress/idea",
  "version": "0.5.9",
  "license": "Apache-2.0",
  "description": "An open source schema file standard and generator",
  "author": "Chris <chris@incept.asia>",
  "homepage": "https://github.com/stackpress/idea",
  "bugs": "https://github.com/stackpress/idea/issues",
  "repository": "stackpress/idea",
  "keywords": [
    "ts",
    "typescript",
    "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"
    },
    "./bin": {
      "require": "./cjs/bin.js",
      "import": "./esm/bin.js"
    }
  },
  "typesVersions": {
    "*": {
      "index": [ "./cjs/index.d.ts"]
    }
  },
  "files": [
    "cjs",
    "esm",
    "bin.js",
    "LICENSE",
    "README.md"
  ],
  "bin": {
    "idea": "./cjs/bin.js"
  },
  "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 -p ./tsconfig.cjs.json tests/*.test.ts"
  },
  "dependencies": {
    "@stackpress/idea-parser": "0.5.9",
    "@stackpress/idea-transformer": "0.5.9"
  },
  "devDependencies": {
    "@types/node": "22.9.3",
    "ts-node": "10.9.2",
    "typescript": "5.7.2"
  }
}
