UNPKG

pw-stick-output

Version:

TypeScript utility for managing PipeWire audio node connections and routing with systemd integration

83 lines (82 loc) 2.17 kB
{ "name": "pw-stick-output", "version": "0.0.4", "type": "module", "description": "TypeScript utility for managing PipeWire audio node connections and routing with systemd integration", "main": "dist/index.js", "keywords": [ "pipewire", "audio", "routing", "linux", "systemd", "audio-processing", "wireplumber" ], "repository": { "type": "git", "url": "git+https://github.com/tomfun/pw-stick-output.git" }, "homepage": "https://github.com/tomfun/pw-stick-output#readme", "bugs": { "url": "https://github.com/tomfun/pw-stick-output/issues" }, "engines": { "node": ">=18.0.0" }, "scripts": { "start": "node dist/index.js", "dev": "concurrently \"npm run build:watch\" \"nodemon dist/index.js\"", "build:watch": "tsc --watch", "build": "tsc", "prepublishOnly": "npm run build", "test": "NODE_OPTIONS=--experimental-vm-modules jest", "test:watch": "npm run test -- --watch", "test:coverage": "npm run test -- --coverage" }, "author": "tomfun", "license": "MIT", "files": [ "dist/", "README.md", "LICENSE", "exampleConfig.cjs", "pw-stick-output.service" ], "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" }, "./configHelper": { "import": "./dist/configHelper.js", "require": "./dist/configHelper.js", "types": "./dist/configHelper.d.ts" }, "./package.json": "./package.json" }, "dependencies": { "lodash": "^4.17.21", "minimist": "^1.2.8", "sd-notify": "^2.8.0", "systemd-journald": "^2.0.0" }, "devDependencies": { "@remix-run/eslint-config": "^2.16.0", "@types/eslint": "^9.6.1", "@types/jest": "^30.0.0", "@types/lodash": "^4.17.17", "@types/minimist": "^1.2.5", "@types/node": "^18.19.103", "@types/sd-notify": "^2.8.2", "concurrently": "^9.1.2", "eslint": "^8.57.1", "eslint-config-prettier": "^10.1.1", "eslint-plugin-prettier": "^5.2.3", "jest": "^30.0.5", "prettier": "^3.5.3", "ts-jest": "^29.4.0", "typescript": "^5.8.3" } }