-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 KB
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
{
"name": "electron-audio-loopback",
"version": "1.0.6",
"description": "Capture system audio loopback on macOS 12.3+, Windows 10+ and Linux",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "npm run build && electron example/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"keywords": [
"electron",
"audio",
"system",
"plugin",
"loopback",
"capture"
],
"author": "Alec Armbruster <alectrocute@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"electron": "^31.0.1",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"electron": ">=31.0.1"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git://github.com/alectrocute/electron-audio-loopback"
}
}