-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.45 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "audiograb",
"version": "1.0.0",
"description": "A simple audio grabber for windows, linux, mac, and raspberry pi",
"license": "GPL-3.0-only",
"author": {
"name": "Bes-js",
"url": "https://github.com/Bes-js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bes-js/audiograb"
},
"bugs": {
"url": "https://github.com/Bes-js/audiograb/issues"
},
"homepage": "https://discord.gg/luppux",
"os": [
"darwin",
"linux",
"win32",
"aix"
],
"keywords": [
"audio",
"grabber",
"ffmpeg",
"microphone",
"audio-recorder",
"audio-grabber",
"audio-recording",
"recorder",
"recording"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
"import": {
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"require": {
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"types": {
"require": "./dist/index.d.ts",
"default": "./dist/index.d.ts"
},
"default": {
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"node": {
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build:package": "tsup",
"build": "tsc"
},
"devDependencies": {
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.6.2"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0"
}
}