UNPKG

z-web-audio-stream

Version:

iOS Safari-safe Web Audio streaming with separated download/storage optimization, instant playback, and memory management

62 lines 1.5 kB
{ "name": "z-web-audio-stream", "version": "1.4.0", "description": "iOS Safari-safe Web Audio streaming with separated download/storage optimization, instant playback, and memory management", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" }, "./worklet": { "import": "./dist/audio-worklet-processor.js" } }, "files": [ "dist", "src", "README.md" ], "devDependencies": { "@types/node": "^24.0.10", "eslint": "^9.30.1", "typescript": "^5.8.3", "vitest": "^3.2.4" }, "keywords": [ "web-audio", "ios-safari", "audio-streaming", "progressive-loading", "indexeddb", "audioworklet", "safari-bugs", "audio-chunks", "instant-playback", "range-requests", "performance-monitoring", "download-optimization", "separated-chunking", "streaming-assembler" ], "repository": { "type": "git", "url": "https://github.com/ZachHandley/WebAudioStream.git", "directory": "packages/web-audio-stream" }, "author": "Zachary Handley <zach@zachhandley.com>", "license": "MIT", "publishConfig": { "access": "public" }, "scripts": { "build": "tsc && cp src/audio-worklet-processor.js dist/", "dev": "tsc --watch", "test": "vitest", "lint": "eslint src --ext .ts,.tsx", "clean": "rm -rf dist" } }