UNPKG

react-siriwave

Version:
63 lines (62 loc) 1.78 kB
{ "name": "react-siriwave", "version": "3.1.0", "description": "React version of siriwave.js", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "scripts": { "build": "yarn build:esm && yarn build:cjs", "build:esm": "tsc", "build:cjs": "tsc --module commonjs --outDir dist/cjs", "lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"", "prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"", "test": "jest --config jest.config.js", "prepare": "npm run build", "prepublishOnly": "npm run prettier && npm run lint" }, "repository": { "type": "git", "url": "git+https://github.com/JoeyKo/React-SiriWave.git" }, "keywords": [ "siriwave", "react", "wave", "voice" ], "author": "JoeyKo", "license": "MIT", "peerDependencies": { "react": ">=16" }, "files": [ "dist", "LICENSE", "README.md" ], "devDependencies": { "@testing-library/react": "^14.0.0", "@types/jest": "^29.5.0", "@types/react": "^18.0.28", "@typescript-eslint/eslint-plugin": "^5.55.0", "@typescript-eslint/parser": "^5.55.0", "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", "eslint": "^8.36.0", "eslint-config-prettier": "^8.7.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^29.5.0", "jest-canvas-mock": "^2.4.0", "jest-environment-jsdom": "^29.5.0", "prettier": "^2.8.4", "react": "^18.2.0", "react-dom": "^18.2.0", "ts-jest": "^29.0.5", "typescript": "^4.7.3" }, "dependencies": { "siriwave": "^2.3.0" } }