{
    "name": "@dynatrace/openkit-js",
    "version": "4.2.0",
    "description": "OpenKit-JavaScript reference implementation",
    "author": "Dynatrace",
    "types": "dist/types/index.d.ts",
    "main": "dist/node/index.js",
    "browser": "dist/browser/openkit.js",
    "license": "Apache-2.0",
    "repository": {
        "type": "git",
        "url": "https://github.com/Dynatrace/openkit-js"
    },
    "engines": {
        "node": ">=18.18.9"
    },
    "scripts": {
        "test": "jest",
        "lint": "eslint --cache src/**/*.ts --ignore-pattern .gitignore",
        "lint:spec": "eslint --cache test/**/*.ts --cache-file test/.eslintcache --ignore-pattern .gitignore",
        "docs": "yarn docs:markdown --plugin none",
        "docs:markdown": "typedoc --out docs src/OpenKitBuilder.ts src/index.ts src/api --tsconfig tsconfig.base.json --exclude src/core --excludePrivate --excludeExternals --cleanOutputDir",
        "build": "yarn build:browser && yarn build:node",
        "build:node": "tsc -p tsconfig.node.json",
        "build:browser": "webpack --mode production",
        "build:browser:dev": "webpack",
        "prepare": "cd .. && husky install public/.husky"
    },
    "devDependencies": {
        "@types/jest": "^27.0.2",
        "@types/node": "^18.18.9",
        "@typescript-eslint/eslint-plugin": "^7.18.0",
        "@typescript-eslint/parser": "^7.18.0",
        "eslint": "^8.57.1",
        "eslint-config-prettier": "^10.0.1",
        "eslint-plugin-import": "^2.31.0",
        "eslint-plugin-jsdoc": "^50.6.3",
        "eslint-plugin-prefer-arrow": "^1.2.3",
        "eslint-plugin-unicorn": "^56.0.1",
        "husky": "^7.0.2",
        "jest": "^27.2.4",
        "lint-staged": "^11.2.0",
        "prettier": "^2.4.1",
        "ts-jest": "^27.0.5",
        "ts-loader": "^9.2.6",
        "ts-mockito": "^2.6.1",
        "typedoc": "^0.23.24",
        "typedoc-plugin-markdown": "^3.11.2",
        "typescript": "^4.6.4",
        "webpack": "^5.56.1",
        "webpack-cli": "^4.8.0",
        "yarn": "^1.22.15"
    },
    "resolutions": {
        "minimist": "^1.2.0"
    },
    "files": [
        "dist",
        "docs"
    ],
    "lint-staged": {
        "*.ts": "eslint --cache --fix",
        "**/*": "prettier --write"
    }
}
