{
    "name": "@elgato/streamdeck",
    "version": "1.3.1",
    "description": "The official Node.js SDK for creating Stream Deck plugins.",
    "main": "./dist/index.js",
    "type": "module",
    "engines": {
        "node": ">=20.5.1"
    },
    "files": [
        "./dist/*.js",
        "./dist/*.d.ts",
        "./types/**/*d.ts"
    ],
    "exports": {
        ".": {
            "browser": {
                "default": "./dist/browser.js",
                "types": "./dist/browser.d.ts"
            },
            "default": {
                "default": "./dist/index.js",
                "types": "./dist/index.d.ts"
            }
        }
    },
    "scripts": {
        "build": "rm -rf ./dist && rollup --config rollup.config.mjs && npm run types",
        "watch": "rollup --config rollup.config.mjs --watch --watch.onEnd=\"npm run types\"",
        "types": "rm -rf ./types && mkdir types && cp -r ./dist/types ./",
        "lint": "eslint --max-warnings 0",
        "lint:fix": "prettier . --write",
        "preversion": "npm run build && npm test && npm run lint",
        "test": "jest",
        "test:coverage": "jest --coverage",
        "test:watch": "jest --watch"
    },
    "prettier": "@elgato/prettier-config",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/elgatosf/streamdeck.git"
    },
    "keywords": [
        "elgato",
        "stream deck",
        "plugin",
        "sdk",
        "framework",
        "marketplace",
        "maker"
    ],
    "author": {
        "name": "Elgato",
        "url": "https://www.elgato.com"
    },
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/elgatosf/streamdeck/issues"
    },
    "homepage": "https://github.com/elgatosf/streamdeck#readme",
    "devDependencies": {
        "@elgato/prettier-config": "^0.2.4",
        "@eslint/js": "^9.18.0",
        "@rollup/plugin-node-resolve": "^16.0.0",
        "@rollup/plugin-typescript": "^12.1.2",
        "@swc/core": "^1.10.9",
        "@swc/jest": "^0.2.37",
        "@tsconfig/node20": "^20.1.4",
        "@types/eslint__js": "^8.42.3",
        "@types/jest": "^29.5.14",
        "@types/node": "^22.10.10",
        "@types/ws": "^8.5.14",
        "@typescript-eslint/eslint-plugin": "^8.21.0",
        "@typescript-eslint/parser": "^8.21.0",
        "eslint": "^9.18.0",
        "eslint-plugin-jsdoc": "^50.6.2",
        "jest": "^29.7.0",
        "jest-environment-jsdom": "^29.7.0",
        "jest-websocket-mock": "^2.5.0",
        "prettier": "^3.4.2",
        "rollup": "^4.32.0",
        "typescript": "^5.7.3",
        "typescript-eslint": "^8.21.0"
    },
    "dependencies": {
        "@elgato/schemas": "^0.4.1",
        "ws": "^8.18.0"
    }
}
