-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 884 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 884 Bytes
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
{
"name": "streamonkey-player",
"version": "1.5.5",
"description": "a library to help connecting to a streaMonkey web stream",
"main": "dist/streamplayer.js",
"scripts": {
"build": "npm run build-browser && npm run build-esm",
"build-esm": "tsc -p .",
"build-browser": "rollup -c",
"watch": "rollup -c -w",
"clean": "rm -rf browser dist",
"prepublishOnly": "npm run build"
},
"type": "module",
"types": "dist/streamplayer.d.ts",
"author": "Wilhelm Bartel <wilhelm.bartel@streamonkey.de>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/streamonkey/streamonkey-player"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/node": "^16.11.6",
"rollup": "^2.59.0",
"typescript": "^4.4.4"
},
"keywords": [
"streamonkey",
"radio",
"player"
]
}