@audiowave/react
Version:
React audio visualization component
72 lines • 1.7 kB
JSON
{
"name": "@audiowave/react",
"version": "0.6.0",
"description": "React audio visualization component",
"keywords": [
"react",
"audio",
"visualization",
"waveform",
"real-time",
"canvas",
"web-audio"
],
"author": "teomyth <teomyth@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/teomyth/audiowave.git",
"directory": "packages/react"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
}
},
"dependencies": {
"@audiowave/core": "0.3.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.1.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^2.1.0",
"@vitest/ui": "^2.1.0",
"jsdom": "^26.1.0",
"release-it": "^19.0.4",
"typescript": "^5.8.3",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^2.1.0"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage --run"
}
}