pw-client
Version:
Node.js wrapper for developing PipeWire clients
77 lines (76 loc) • 2 kB
JSON
{
"name": "pw-client",
"version": "1.0.0",
"description": "Node.js wrapper for developing PipeWire clients",
"keywords": [
"sound",
"pipewire",
"linux"
],
"author": "Jacob Page <jacob.h.page@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apoco/node-pw-client"
},
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"dependencies": {
"node-addon-api": "^8.3.1"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@tsconfig/node22": "^22.0.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.16.3",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"node-gyp": "^11.2.0",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0"
},
"gypfile": true,
"binary": {
"napi_versions": [8]
},
"os": [
"linux"
],
"files": [
"dist/",
"lib/",
"src/",
"binding.gyp",
"README.md",
"LICENSE"
],
"scripts": {
"install": "node-gyp rebuild",
"build": "npm run build:native:debug && npm run build:js",
"build:native": "node-gyp build",
"build:native:debug": "npm run build:native -- --debug",
"build:js": "tsc --project tsconfig.build.json",
"docs:generate": "npm run docs:examples && npm run docs:api",
"docs:examples": "tsx scripts/generate-docs.mts",
"docs:api": "typedoc",
"test:snippets": "tsx scripts/test-examples.mts",
"test": "npm run test:snippets",
"lint": "eslint .snippets lib scripts --ext .mts",
"lint:fix": "eslint .snippets lib scripts --ext .mts --fix",
"format": "prettier --write \".snippets/**/*.mts\" \"lib/**/*.mts\" \"scripts/**/*.mts\"",
"check": "npm run lint && npm run format"
}
}