{
  "name": "ledgerstack-core",
  "version": "0.1.2",
  "description": "LedgerStack Core: reusable double-entry accounting engine for Node.js backends.",
  "type": "module",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "homepage": "https://akram-ashraf.github.io/ledgerstack-core-public/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/akram-ashraf/ledgerstack-core.git"
  },
  "bugs": {
    "url": "https://github.com/akram-ashraf/ledgerstack-core/issues"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "clean": "powershell -NoProfile -Command \"if (Test-Path dist) { Remove-Item -Recurse -Force dist }; if (Test-Path dist-tests) { Remove-Item -Recurse -Force dist-tests }\"",
    "build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:cjs": "tsc -p tsconfig.cjs.json && node scripts/postbuild-cjs.cjs",
    "build:types": "tsc -p tsconfig.types.json",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "accounting",
    "double-entry",
    "ledger",
    "bookkeeping",
    "general-ledger",
    "financial-reports",
    "nodejs",
    "typescript"
  ],
  "license": "MIT",
  "author": "Akram P A",
  "devDependencies": {
    "typescript": "^5.8.2"
  }
}
