UNPKG

z-web-audio-stream-cli

Version:

CLI tool for deploying Web Audio Stream worklet files with instant playback support

54 lines 1.21 kB
{ "name": "z-web-audio-stream-cli", "version": "1.1.0", "description": "CLI tool for deploying Web Audio Stream worklet files with instant playback support", "type": "module", "bin": { "z-web-audio-stream-cli": "./dist/cli.js", "zwas-cli": "./dist/cli.js" }, "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "src", "README.md" ], "dependencies": { "chalk": "^5.4.1", "commander": "^14.0.0", "ora": "^8.2.0" }, "devDependencies": { "@types/node": "^24.0.10", "eslint": "^9.30.1", "typescript": "^5.8.3", "vitest": "^3.2.4" }, "keywords": [ "web-audio", "ios-safari", "audio-worklet", "cli", "deploy", "instant-playback" ], "repository": { "type": "git", "url": "https://github.com/ZachHandley/WebAudioStream.git", "directory": "packages/web-audio-stream-cli" }, "author": "Zachary Handley <zach@zachhandley.com>", "license": "MIT", "publishConfig": { "access": "public" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "vitest", "lint": "eslint src --ext .ts", "clean": "rm -rf dist" } }