UNPKG

@elgato/streamdeck

Version:

The official Node.js SDK for creating Stream Deck plugins.

68 lines 1.76 kB
{ "name": "@elgato/streamdeck", "version": "2.1.0", "description": "The official Node.js SDK for creating Stream Deck plugins.", "main": "./dist/plugin/index.js", "type": "module", "engines": { "node": ">=20.5.1" }, "files": [ "./dist/**/*.js", "./dist/**/*.d.ts" ], "exports": "./dist/plugin/index.js", "types": "./dist/plugin/index.d.ts", "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/eslint-config": "^0.3.2", "@elgato/prettier-config": "^0.3.3", "@tsconfig/node20": "^20.1.9", "@types/node": "^24.12.0", "@types/ws": "^8.18.1", "@vitest/coverage-v8": "^3.2.4", "eslint": "^9.39.4", "mock-socket": "^9.3.1", "prettier": "^3.8.1", "tslib": "^2.8.1", "typescript": "^5.9.3", "vitest": "^3.2.4", "vitest-websocket-mock": "^0.5.0" }, "dependencies": { "@elgato/schemas": "^0.4.14", "@elgato/utils": "^0.4.4", "ws": "^8.19.0" }, "scripts": { "build": "rm -rf ./dist && tsc -p tsconfig.build.json", "dev": "rm -rf ./dist && tsc -p tsconfig.build.json -w", "lint": "eslint --max-warnings 0", "lint:fix": "prettier . --write", "test": "vitest --run --reporter verbose", "test:coverage": "vitest run --coverage", "test:watch": "vitest" } }