{
  "name": "@antelopejs/core",
  "version": "1.4.3",
  "description": "Modular Node.js framework with interface-based architecture for building extensible applications",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AntelopeJS/antelopejs.git"
  },
  "license": "Apache-2.0",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "bin": {
    "ajs": "dist/core/cli/index.js"
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "packageManager": "pnpm@10.6.5",
  "antelopeJs": {
    "implements": [
      "@antelopejs/interface-core"
    ]
  },
  "keywords": [
    "antelopejs",
    "framework",
    "typescript",
    "modular"
  ],
  "scripts": {
    "build": "rimraf dist && tsc",
    "prepack": "pnpm run build",
    "release": "pnpm run lint && pnpm run test && pnpm run prepack && release-it",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write .",
    "test": "pnpm test:unit && pnpm test:playground",
    "test:unit": "mocha --require ts-node/register --require test/setup.ts 'test/**/*.test.ts' --exit",
    "test:playground": "pnpm build && pnpm --dir playground install && ts-node playground/test-playground.ts",
    "test:watch": "mocha --require ts-node/register --require test/setup.ts --watch --watch-extensions ts 'test/**/*.test.ts'",
    "test:coverage": "c8 --check-coverage --lines 90 --functions 90 --branches 90 --statements 90 mocha --require ts-node/register --require test/setup.ts 'test/**/*.test.ts' --exit"
  },
  "dependencies": {
    "@antelopejs/interface-core": "^0.0.6",
    "@types/proper-lockfile": "^4.1.4",
    "boxen": "^8.0.1",
    "chalk": "^4.1.2",
    "cli-progress": "^3.12.0",
    "commander": "^13.1.0",
    "figlet": "^1.11.0",
    "inly": "^5.0.1",
    "inquirer": "^12.11.1",
    "jiti": "^2.6.1",
    "mocha": "^11.7.5",
    "proper-lockfile": "^4.1.2",
    "reflect-metadata": "^0.2.2",
    "semver": "^7.7.4",
    "typescript": "^5.9.3"
  },
  "devDependencies": {
    "@biomejs/biome": "2.3.2",
    "@types/chai": "^4.3.20",
    "@types/cli-progress": "^3.11.6",
    "@types/figlet": "^1.7.0",
    "@types/inquirer": "^9.0.9",
    "@types/mocha": "^10.0.10",
    "@types/node": "^22.19.15",
    "@types/semver": "^7.7.1",
    "@types/sinon": "^17.0.4",
    "c8": "^10.1.3",
    "chai": "^4.5.0",
    "release-it": "^19.2.4",
    "release-it-changelogen": "^0.1.0",
    "rimraf": "^6.1.3",
    "sinon": "^17.0.2",
    "ts-node": "^10.9.2"
  },
  "c8": {
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "src/**/*.d.ts"
    ],
    "reporter": [
      "text",
      "html"
    ],
    "report-dir": "coverage"
  }
}
