-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
40 lines (40 loc) · 869 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
39
40
{
"name": "pcm-player",
"version": "0.0.18",
"description": "A minimalist javascript audio player for PCM streaming audio",
"main": "./dist/index.js",
"directories": {
"doc": "docs",
"example": "example"
},
"dependencies": {},
"files": [
"dist",
"src",
"README.md"
],
"devDependencies": {
"ws": "^7.3.0"
},
"scripts": {
"build": "rollup ./src/pcm-player.js --file ./dist/index.js --format umd --name 'PCMPlayer'"
},
"types":"./src/pcm-player.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pkjy/pcm-player.git"
},
"keywords": [
"pcm",
"player",
"webaudio",
"stream",
"websocket"
],
"author": "pkjy",
"license": "MIT",
"bugs": {
"url": "https://github.com/pkjy/pcm-player/issues"
},
"homepage": "https://github.com/pkjy/pcm-player#readme"
}