{
    "name": "@runejs/core",
    "version": "1.6.0",
    "description": "Core logging, networking, and buffer functionality for RuneJS applications.",
    "main": "lib/index.js",
    "types": "lib/index.d.ts",
    "scripts": {
        "build": "tsc",
        "start": "ts-node src/test.ts",
        "lint": "eslint --ext .ts src",
        "lint:fix": "eslint --ext .ts src --fix",
        "copy-documents": "cp package.json lib && cp README.md lib && cp .npmignore lib && cp LICENSE lib",
        "copy-documents:windows": "copy package.json lib && copy README.md lib && copy .npmignore lib && copy LICENSE lib",
        "package": "rimraf lib && npm run build && npm run copy-documents && cd lib && npm publish --dry-run",
        "package:windows": "rimraf lib && npm run build && npm run copy-documents:windows && cd lib && npm publish --dry-run"
    },
    "repository": {
        "type": "git",
        "url": "git+ssh://git@github.com/runejs/core.git"
    },
    "keywords": [
        "runejs",
        "runescape",
        "typescript"
    ],
    "author": "Tynarus",
    "license": "GPL-3.0",
    "bugs": {
        "url": "https://github.com/runejs/core/issues"
    },
    "homepage": "https://github.com/runejs/core#readme",
    "dependencies": {
        "compressjs": "^1.0.3",
        "js-yaml": "^3.14.1",
        "pino": "^6.13.0",
        "pino-pretty": "^4.8.0",
        "tslib": ">=2.1.0"
    },
    "devDependencies": {
        "@runejs/eslint-config": "^1.0.0",
        "@types/node": "^14.17.6",
        "@types/pino": "^6.3.11",
        "@typescript-eslint/eslint-plugin": "^4.29.3",
        "@typescript-eslint/parser": "^4.29.3",
        "eslint": "^7.32.0",
        "rimraf": "^3.0.2",
        "ts-node": "^9.1.1",
        "typescript": ">=4.2.0"
    },
    "peerDependencies": {
        "tslib": ">=2.1.0"
    },
    "eslintConfig": {
        "extends": [
            "@runejs/eslint-config"
        ],
        "parserOptions": {
            "project": "./tsconfig.json"
        }
    }
}
