UNPKG

song-viz

Version:
80 lines (79 loc) 1.87 kB
{ "name": "song-viz", "version": "1.1.1", "author": "Devesh", "license": "MIT", "type": "module", "repository": { "type": "git", "url": "https://github.com/d-e-v-esh/song-viz" }, "homepage": "https://github.com/d-e-v-esh/song-viz/blob/master/README.md", "source": "src/index.js", "main": "./dist/index.umd.js", "module": "./dist/index.es.js", "types": "./dist/index.d.ts", "keywords": [ "visualizer", "visualize", "react", "music", "audio", "player", "song", "visualise", "viz", "visualiser" ], "files": [ "dist" ], "scripts": { "dev": "vite", "build": "tsc && vite build", "prepare": "husky install", "preview": "vite preview" }, "peerDependencies": { "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { "@types/node": "^18.11.0", "@types/react": "^18.0.17", "@types/react-dom": "^18.0.6", "@typescript-eslint/eslint-plugin": "^5.40.1", "@typescript-eslint/parser": "^5.40.1", "@vitejs/plugin-react": "^2.1.0", "eslint": "^8.25.0", "eslint-plugin-react": "^7.31.10", "eslint-plugin-simple-import-sort": "^8.0.0", "husky": "^8.0.1", "prettier": "^2.7.1", "typescript": "^4.6.4", "vite": "^3.1.0", "vite-plugin-dts": "^1.6.6", "vite-plugin-linter": "^1.2.0", "vite-tsconfig-paths": "^3.5.1" }, "lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'", "lint:fix": "eslint --fix 'src/**/*.{jsx,ts,tsx}'", "format": "prettier --write src//**/*.{ts,tsx,css} --config ./.prettierrc", "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "src/**/*.{js,jsx,ts,tsx}": [ "yarn eslint", "yarn format" ] }, "exports": { ".": { "import": "./dist/index.es.js", "require": "./dist/index.umd.js" } } }