UNPKG

@tmigone/pulseaudio

Version:

A TypeScript based client library for PulseAudio.

68 lines (67 loc) 1.92 kB
{ "name": "@tmigone/pulseaudio", "version": "1.0.5", "description": "A TypeScript based client library for PulseAudio.", "main": "build/index.js", "types": "build/index.d.ts", "scripts": { "clean": "rm -rf build", "build": "npm run clean && tsc --project tsconfig.publish.json", "test": "npm run test:unit && npm run test:e2e", "test:unit": "ava", "test:e2e": "ava --config ava-e2e.config.cjs", "watch": "tsc --watch --project tsconfig.json", "prepack": "npm run build", "prepare": "husky install", "lint": "ts-standard", "lint:fix": "ts-standard --fix", "pre-commit": "lint-staged", "coverage": "nyc npm run test:unit && nyc report --reporter=lcovonly", "docs": "typedoc --categorizeByGroup false --excludePrivate --out typedoc src", "docs:watch": "typedoc --watch --categorizeByGroup false --excludePrivate --out typedoc src" }, "repository": { "type": "git", "url": "git+https://github.com/tmigone/pulseaudio.git" }, "author": "Tomás Migone <tomasmigone@gmail.com>", "contributors": [ "SpacingBat3 <npm@spacingbat3.anonaddy.com> (https://github.com/SpacingBat3)" ], "license": "MIT", "keywords": [ "pulseaudio", "pulse", "audio", "paclient", "palib", "client" ], "bugs": { "url": "https://github.com/tmigone/pulseaudio/issues" }, "homepage": "https://github.com/tmigone/pulseaudio#readme", "engines": { "node": ">=10.0.0 <17.0.0" }, "devDependencies": { "@types/node": "^14.0.13", "ava": "^3.8.2", "dotenv": "^11.0.0", "husky": "^7.0.4", "lint-staged": "^12.2.0", "nodemon": "^2.0.4", "nyc": "^15.1.0", "ts-node": "^8.10.2", "ts-standard": "^11.0.0", "typedoc": "^0.22.11", "typedoc-plugin-no-inherit": "^1.3.1", "typescript": "^4.0.0" }, "files": [ "build/*", "README.md", "CHANGELOG.md", "LICENSE" ] }