UNPKG

streamdeck-typescript

Version:

This library will help you build elgato stream deck plugins in typescript

56 lines (55 loc) 1.77 kB
{ "name": "streamdeck-typescript", "version": "3.2.1", "description": "This library will help you build elgato stream deck plugins in typescript", "homepage": "https://github.com/XeroxDev/Stream-Deck-TS-SDK", "license": "MIT", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "author": { "email": "help@xeroxdev.de", "name": "Dominic 'XeroxDev' Ris", "url": "https://github.com/XeroxDev" }, "bugs": { "url": "https://github.com/XeroxDev/Stream-Deck-TS-SDK/issues", "email": "help@xeroxdev.de" }, "repository": { "type": "git", "url": "https://github.com/XeroxDev/Stream-Deck-TS-SDK.git" }, "keywords": [ "Stream Deck", "Elgato", "TypeScript", "Library" ], "scripts": { "build": "tsc -p tsconfig.json", "build-example": "browserify -p tsify example/counter-pi.ts | terser -cm --comments false -o dist/bundle-pi.js && browserify -p tsify example/counter.ts | terser -cm --comments false -o dist/bundle.js", "watch": "start watchify --debug -p tsify example/counter.ts -o dist/bundle.js && start watchify --debug -p tsify example/counter-pi.ts -o dist/bundle-pi.js", "release": "standard-version --sign --commit-all", "documentation": "typedoc src/index.ts" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "private": false, "devDependencies": { "@commitlint/cli": "^12.1.4", "@commitlint/config-conventional": "^12.1.4", "@tsconfig/recommended": "^1.0.1", "browserify": "^17.0.0", "husky": "^3.1.0", "pinst": "^2.1.6", "standard-version": "^9.3.0", "terser": "^5.7.0", "tsify": "^5.0.4", "typedoc": "^0.20.36", "typescript": "4.2.3", "watchify": "^4.0.0" } }