-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@audio/speaker",
"version": "2.3.2",
"description": "Output audio data to speaker in browser/node",
"type": "module",
"sideEffects": false,
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"browser": "./browser.js",
"default": "./index.js"
},
"./stream": {
"types": "./stream.d.ts",
"browser": "./browser.js",
"default": "./stream.js"
}
},
"browser": {
"./index.js": "./browser.js"
},
"scripts": {
"build": "node-gyp rebuild",
"test": "node test.js",
"version": "node -e \"const v=require('./package.json').version,fs=require('fs');for(const d of fs.readdirSync('packages')){const f='packages/'+d+'/package.json',p=JSON.parse(fs.readFileSync(f));p.version=v;fs.writeFileSync(f,JSON.stringify(p,null,2)+'\\n')}\" && git add packages/*/package.json"
},
"files": [
"index.js",
"index.d.ts",
"stream.js",
"stream.d.ts",
"browser.js",
"browser.d.ts",
"src/",
"native/speaker.c",
"native/miniaudio.h",
"binding.gyp",
"prebuilds/"
],
"gypfile": true,
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/speaker.git"
},
"keywords": [
"audio",
"audiojs",
"pcm",
"speaker",
"web-audio",
"sound",
"sink",
"miniaudio"
],
"author": "Dmitry Iv. <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audiojs/speaker/issues"
},
"homepage": "https://github.com/audiojs/speaker#readme",
"engines": {
"node": ">=18"
},
"optionalDependencies": {
"@audio/speaker-darwin-arm64": ">=2.0.0",
"@audio/speaker-darwin-x64": ">=2.0.0",
"@audio/speaker-linux-arm64": ">=2.0.0",
"@audio/speaker-linux-x64": ">=2.0.0",
"@audio/speaker-win32-x64": ">=2.0.0"
},
"devDependencies": {
"prebuildify": "^6.0.1",
"tst": "^9.3.0"
},
"publishConfig": {
"access": "public"
},
"funding": "https://github.com/sponsors/audiojs"
}