{
    "name": "inspectable",
    "version": "3.0.2",
    "description": "Make the output of a class instance in the console meaningful",
    "license": "MIT",
    "author": {
        "name": "Vladlen (Negezor)",
        "email": "negezor@gmail.com"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/negezor/inspectable.git"
    },
    "homepage": "https://github.com/negezor/inspectable#readme",
    "bugs": "https://github.com/negezor/inspectable/issues",
    "keywords": [
        "inspect",
        "inspectable",
        "console",
        "typescript"
    ],
    "files": [
        "lib"
    ],
    "main": "./lib/index.js",
    "types": "./lib/index.d.ts",
    "module": "./lib/index.mjs",
    "browser": "./lib/index.browser.mjs",
    "exports": {
        ".": {
            "import": "./lib/index.mjs",
            "require": "./lib/index.js",
            "types": "./lib/index.d.ts",
            "browser": "./lib/index.browser.mjs"
        }
    },
    "sideEffects": false,
    "engines": {
        "node": ">=20.0.0"
    },
    "devDependencies": {
        "@biomejs/biome": "^1.8.1",
        "@types/node": "^20.14.2",
        "rollup": "^4.18.0",
        "rollup-plugin-typescript2": "^0.36.0",
        "tsx": "^4.15.5",
        "typedoc": "^0.25.13",
        "typescript": "^5.4.5"
    },
    "scripts": {
        "prepare": "npm run rollup:build && npm run test",
        "build": "npm run rollup:build",
        "watch": "npm run rollup:watch",
        "clean": "rm -rf lib",
        "rollup:build": "rollup -c",
        "rollup:watch": "npm run rollup:build -- --watch",
        "test": "npm run test:node && npm run lint",
        "test:node": "node --import tsx --test test/*.test.ts",
        "lint": "npm run lint:biome",
        "lint:biome": "biome lint --apply ./src",
        "docs:generate": "typedoc --theme default --out docs/reference --excludeExternals --readme none src"
    }
}
