{
  "name": "custom-ability",
  "version": "2.3.1",
  "description": "make custom ability more easy. generate the ability which can be added to any class directly.",
  "homepage": "https://github.com/snowyu/custom-ability.js",
  "source": "./src/index.ts",
  "main": "./lib/index.js",
  "module": "./lib/index.mjs",
  "types": "./lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.mjs",
      "require": "./lib/index.js"
    }
  },
  "files": [
    "README.md",
    "LICENSE-MIT",
    "*.js",
    "lib"
  ],
  "engines": {
    "node": ">=12"
  },
  "scripts": {
    "build": "npm run build.ts && npm run doc.md",
    "build.ts": "tsup",
    "clean": "rm -fr web docs lib",
    "clean.doc": "rm -fr web docs",
    "clean.lib": "rm -fr lib",
    "doc": "typedoc --plugin none --out web ./src",
    "doc.md": "typedoc --plugin typedoc-plugin-markdown --out docs ./src",
    "lint": "npx eslint --config .eslintrc.yml src",
    "lint.fix": "npm run lint -- --fix",
    "release": "npm run clean && npm run build && git add docs && git ci -m 'docs: update API docs' && npx commit-and-tag-version -s",
    "release.alpha": "npm run release -- --prerelease alpha",
    "test": "vitest run"
  },
  "dependencies": {
    "inherits-ex": "^2.2.2",
    "util-ex": "^2.7.1"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^0.38.5",
    "@types/chai": "^5.2.3",
    "@types/node": "^18.15.11",
    "@types/sinon": "^22.0.0",
    "chai": "~4.3.7",
    "eslint": "^8.38.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-tsdoc": "^0.2.17",
    "sinon": "~15.0.3",
    "sinon-chai": "~3.7.0",
    "tsup": "^8.5.1",
    "typedoc": "^0.24.4",
    "typedoc-plugin-markdown": "^3.15.1",
    "typescript": "^5.0.4",
    "vitest": "^2.1.9"
  },
  "pre-commit": [
    "test"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/snowyu/custom-ability.js"
  },
  "keywords": [
    "feature",
    "ability",
    "object",
    "class",
    "model",
    "prototype",
    "aop",
    "framework",
    "reference",
    "refcount"
  ],
  "author": {
    "name": "Riceball LEE",
    "email": "snowyu.lee@gmail.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/snowyu/custom-ability.js/issues"
  }
}
