{
  "name": "react-speakup",
  "version": "1.1.2",
  "description": "a lightweight and easy-to-use React package that enables your application to convert text to speech and speech to text effortlessly.",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/esm/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/Amin-Partovi/react-speakup.git"
  },
  "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}\"",
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run prettier && npm run lint",
    "test": "jest --config jestconfig.json"
  },
  "keywords": [
    "react",
    "react-speakup",
    "speech-recognition",
    "speech-synthesis",
    "voice-to-text",
    "text-to-voice",
    "speak"
  ],
  "author": "Amin Partovi",
  "license": "ISC",
  "devDependencies": {
    "@babel/preset-react": "^7.23.3",
    "@testing-library/react": "^14.1.2",
    "@types/dom-speech-recognition": "^0.0.4",
    "@types/jest": "^29.5.11",
    "@types/react": "^18.0.12",
    "@typescript-eslint/eslint-plugin": "^6.13.2",
    "@typescript-eslint/parser": "^6.13.2",
    "eslint": "^8.55.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.0.1",
    "eslint-plugin-react": "^7.33.2",
    "eslint-plugin-react-hooks": "^4.6.0",
    "jest": "^29.7.0",
    "jest-canvas-mock": "^2.5.2",
    "jest-environment-jsdom": "^29.7.0",
    "prettier": "^3.1.1",
    "react": "^18.1.0",
    "react-dom": "^18.1.0",
    "ts-jest": "^29.1.1",
    "typescript": "^4.7.3"
  },
  "peerDependencies": {
    "react": ">=16"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ]
}
