-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 921 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "pulseaudio.js",
"version": "1.3.4",
"description": "PulseAudio client for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/janakj/pulseaudio.js.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .js,.ts",
"prepare": "npm run build"
},
"keywords": [
"pulseaudio",
"pulse",
"audio"
],
"author": "Jan Janak <jan@janakj.org>",
"license": "ISC",
"bugs": {
"url": "https://github.com/janakj/pulseaudio.js/issues"
},
"homepage": "https://github.com/janakj/pulseaudio.js#readme",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.17.0",
"typescript": "^4.1.3"
},
"dependencies": {
"debug": "^4.3.1"
}
}