UNPKG

zusound

Version:

Sound feedback middleware for Zustand state management

90 lines (89 loc) 2.36 kB
{ "name": "zusound", "version": "0.1.3", "description": "Sound feedback middleware for Zustand state management", "type": "module", "main": "./dist/zusound.umd.js", "module": "./dist/zusound.es.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/zusound.es.js", "require": "./dist/zusound.umd.js" } }, "files": [ "dist", "LICENSE", "README.md" ], "scripts": { "dev": "vite", "build": "rimraf dist && tsup", "build:prod": "NODE_ENV=production bun run build", "lint": "eslint .", "format": "prettier --write .", "preview": "vite preview", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "build:examples": "tsc -b && vite build -c vite.examples.config.ts", "deploy:examples": "bun run build:examples && gh-pages -d dist", "prepublishOnly": "bun run build:prod" }, "keywords": [ "zustand", "sound", "audio", "middleware", "state-management", "sonification" ], "author": "zusound Team", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/behoney/zusound.git" }, "homepage": "https://behoney.github.io/zusound/", "bugs": { "url": "https://github.com/behoney/zusound/issues" }, "npm": "https://www.npmjs.com/package/zusound", "dependencies": { "zustand": "^5.0.3" }, "peerDependencies": { "zustand": ">=4.3.0" }, "devDependencies": { "@eslint/js": "^9.21.0", "@types/node": "^22.14.0", "@types/react": "^18.3.1", "@types/react-dom": "^18.3.1", "@vitejs/plugin-react": "^4.3.4", "@vitest/coverage-v8": "^3.1.1", "ajv": "^8.17.1", "eslint": "^9.21.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-react-hooks": "^5.1.0", "eslint-plugin-react-refresh": "^0.4.19", "gh-pages": "^6.1.1", "globals": "^15.15.0", "immer": "^10.1.1", "jsdom": "^26.0.0", "react": "^18.3.1", "react-dom": "^18.3.1", "react-router-dom": "^7.5.0", "react-syntax-highlighter": "^15.6.1", "rimraf": "^6.0.1", "tsc-alias": "^1.8.13", "tsup": "^8.4.0", "typescript": "~5.7.2", "typescript-eslint": "^8.24.1", "vite": "^6.2.0", "vite-plugin-dts": "^4.5.3", "vitest": "^3.1.1" } }