{
    "name": "@bedrock-oss/bedrock-boost",
    "version": "2.1.0",
    "description": "A utility package with helper functions for developing add-ons with Script API in Minecraft Bedrock Edition",
    "keywords": [
        "minecraft",
        "bedrock",
        "addon",
        "script-api",
        "typescript"
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/Bedrock-OSS/bedrock-boost.git"
    },
    "main": "./dist/index.js",
    "module": "./dist/index.mjs",
    "types": "./dist/index.d.ts",
    "files": [
        "dist"
    ],
    "exports": {
        ".": {
            "import": "./dist/index.mjs",
            "require": "./dist/index.js",
            "types": "./dist/index.d.ts"
        }
    },
    "scripts": {
        "build": "tsup",
        "test": "jest",
        "prepublishOnly": "npm run build",
        "format": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\"",
        "release-minor": "npm run build && npm run test && npm version minor && git push && git push --tags && npm publish",
        "release-patch": "npm run build && npm run test && npm version patch && git push && git push --tags && npm publish"
    },
    "author": "Bedrock-OSS",
    "license": "MIT",
    "devDependencies": {
        "@bedrock-oss/minecraft-server-jest": "^0.0.4",
        "@types/jest": "^29.5.6",
        "@typescript-eslint/eslint-plugin": "^7.1.0",
        "@typescript-eslint/parser": "^7.1.0",
        "eslint": "^8.57.0",
        "eslint-plugin-minecraft-linting": "^1.1.0",
        "jest": "^29.7.0",
        "prettier": "^3.6.2",
        "ts-jest": "^29.1.1",
        "tsup": "^7.2.0",
        "typescript": "^5.9.3"
    },
    "dependencies": {
        "@minecraft/common": "latest",
        "@minecraft/server": "latest"
    },
    "publishConfig": {
        "access": "public"
    }
}
