-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
48 lines (48 loc) · 1 KB
/
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
39
40
41
42
43
44
45
46
47
48
{
"name": "win-audio",
"version": "3.0.5",
"description": "Get, Set and Watch Speaker/Microphone Volume on Windows",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"os": [
"win32"
],
"files": [
"dist",
"audio-napi.cc",
"binding.gyp",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc"
},
"author": "Francesco Saverio Cannizzaro <fcannizzaro>",
"license": "MIT",
"gypfile": true,
"repository": {
"type": "git",
"url": "git+https://github.com/fcannizzaro/win-audio.git"
},
"bugs": {
"url": "https://github.com/fcannizzaro/win-audio/issues"
},
"homepage": "https://github.com/fcannizzaro/win-audio#readme",
"keywords": [
"audio",
"microphone",
"speaker",
"windows"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/node20": "^20.1.4",
"@types/bindings": "^1.5.5",
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"dependencies": {
"bindings": "^1.5.0"
}
}