react-hooks-audio
Version:
Custom audio playback for React Hooks
97 lines • 2.61 kB
JSON
{
"name": "react-hooks-audio",
"description": "Custom audio playback for React Hooks",
"version": "0.1.4",
"type": "module",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.js",
"files": [
"dist",
"README*"
],
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --fix --max-warnings 10",
"prettier --write",
"git add ."
],
"*.{css,less,sass,scss}": [
"git add ."
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Winfans/react-hooks-audio.git"
},
"keywords": [
"audio",
"react audio",
"react hooks audio",
"react",
"react hooks"
],
"author": "Winfans",
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"bugs": {
"url": "https://github.com/Winfans/react-hooks-audio/issues"
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@ant-design/pro-components": "^2.4.12",
"ahooks": "^3.7.7",
"antd": "^5.11.4",
"classnames": "^2.3.2",
"dayjs": "^1.11.7",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"react-timer-hook": "^3.0.7",
"tailwindcss": "^3.3.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.7.0",
"@rollup/plugin-typescript": "^11.1.5",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.10.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"commitlint": "^17.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.3.5",
"typescript": "^5.0.2",
"vite": "^5.0.2"
},
"scripts": {
"build:hooks": "rollup -c ./rollup.config.ts --configPlugin typescript",
"dev": "cross-env ENV=dev vite",
"build": "cross-env ENV=prod vite build",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 10"
}
}