UNPKG

@uppy/audio

Version:

Uppy plugin that records audio using the device’s microphone.

67 lines 1.58 kB
{ "name": "@uppy/audio", "description": "Uppy plugin that records audio using the device’s microphone.", "version": "3.1.0", "license": "MIT", "style": "dist/style.min.css", "keywords": [ "file uploader", "uppy", "uppy-plugin", "audio", "microphone", "sound", "record", "mediarecorder" ], "type": "module", "sideEffects": [ "*.css" ], "homepage": "https://uppy.io", "bugs": { "url": "https://github.com/transloadit/uppy/issues" }, "repository": { "type": "git", "url": "git+https://github.com/transloadit/uppy.git" }, "files": [ "src", "lib", "dist", "CHANGELOG.md" ], "exports": { ".": "./lib/index.js", "./css/style.css": "./dist/style.css", "./css/style.min.css": "./dist/style.min.css", "./css/style.scss": "./src/style.scss", "./package.json": "./package.json" }, "dependencies": { "@uppy/utils": "^7.1.4", "preact": "^10.5.13" }, "devDependencies": { "cssnano": "^7.0.7", "jsdom": "^26.1.0", "postcss": "^8.5.6", "postcss-cli": "^11.0.1", "sass": "^1.89.2", "typescript": "^5.8.3", "vitest": "^3.2.4" }, "peerDependencies": { "@uppy/core": "^5.2.0" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsc --build tsconfig.build.json", "build:css": "sass --load-path=../../ src/style.scss dist/style.css && postcss dist/style.css -u cssnano -o dist/style.min.css", "typecheck": "tsc --build", "test": "vitest run --environment=jsdom --silent='passed-only'" } }