A modern, network-enabled music player platform built on Rockbox technology. rockboxd.tsiry-sandratraina.com
rust deno navidrome airplay libadwaita zig mpris snapcast mpd rockbox audio subsonic
2

Configure Feed

Select the types of activity you want to include in your feed.

rockboxd / bindings / wasm / package.json
1.4 kB 59 lines
1{ 2 "name": "rockbox-wasm", 3 "version": "0.1.1", 4 "description": "Rockbox audio decoders + DSP compiled to WebAssembly — a batteries-included browser player (FLAC/MP3/Vorbis/Opus/ALAC/AAC/WavPack/…, 10-band parametric EQ, live internet radio) with the wasm bundled in.", 5 "license": "GPL-2.0-or-later", 6 "author": "Tsiry Sandratraina", 7 "type": "module", 8 "repository": { 9 "type": "git", 10 "url": "git+https://github.com/tsirysndr/rockboxd.git", 11 "directory": "bindings/wasm" 12 }, 13 "homepage": "https://github.com/tsirysndr/rockboxd/tree/master/bindings/wasm#readme", 14 "bugs": { 15 "url": "https://github.com/tsirysndr/rockboxd/issues" 16 }, 17 "main": "./dist/rockbox.js", 18 "module": "./dist/rockbox.js", 19 "types": "./index.d.ts", 20 "exports": { 21 ".": { 22 "types": "./index.d.ts", 23 "import": "./dist/rockbox.js" 24 }, 25 "./dist/*": "./dist/*" 26 }, 27 "files": [ 28 "dist", 29 "index.d.ts", 30 "README.md" 31 ], 32 "sideEffects": false, 33 "keywords": [ 34 "rockbox", 35 "wasm", 36 "webassembly", 37 "audio", 38 "decoder", 39 "codec", 40 "flac", 41 "mp3", 42 "vorbis", 43 "opus", 44 "alac", 45 "equalizer", 46 "dsp", 47 "web-audio", 48 "audioworklet", 49 "internet-radio", 50 "player" 51 ], 52 "scripts": { 53 "build": "bash scripts/build.sh", 54 "publish:npm": "bash scripts/publish.sh" 55 }, 56 "engines": { 57 "node": ">=18" 58 } 59}