{
  "name": "easy-speech",
  "version": "2.4.0",
  "description": "Cross browser Speech Synthesis",
  "type": "module",
  "main": "./dist/EasySpeech.cjs.js",
  "browser": "./dist/EasySpeech.iife.js",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/EasySpeech.js"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/EasySpeech.cjs.js"
      }
    }
  },
  "types": "./dist/index.d.ts",
  "scripts": {
    "test": "NODE_ENV=test ./node_modules/.bin/mocha 'tests/**/*.tests.js'",
    "test-debug": "NODE_ENV=test ./node_modules/.bin/mocha  --inspect --debug-brk 'tests/**/*.tests.js'",
    "test:coverage": "NODE_ENV=test c8 --all --include=src/EasySpeech.js --reporter=html --reporter=text ./node_modules/.bin/mocha 'tests/**/*.tests.js'",
    "lint": "standard . | snazzy",
    "lint:fix": "standard . --fix | snazzy",
    "prepublish": "npm run lint && npm run test && npm run build && npm run build:docs",
    "build:docs": "jsdoc2md src/EasySpeech.js > API.md",
    "build:demo": "rm docs/demo.js && rollup --config rollup.demo.config.js",
    "build": "rollup --config rollup.dist.config.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jankapunkt/easy-speech.git"
  },
  "keywords": [
    "webspeech",
    "speechsynthesis",
    "browser",
    "web",
    "standards"
  ],
  "author": "Jan Küster <info@jankuester.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jankapunkt/easy-speech/issues"
  },
  "homepage": "https://github.com/jankapunkt/easy-speech#readme",
  "devDependencies": {
    "@babel/core": "^7.23.2",
    "@babel/preset-env": "^7.23.2",
    "@rollup/plugin-babel": "^6.0.4",
    "@rollup/plugin-commonjs": "^26.0.1",
    "@rollup/plugin-terser": "^0.4.4",
    "c8": "^8.0.0",
    "chai": "^5.1.0",
    "jsdoc-to-markdown": "^8.0.0",
    "mocha": "^10.2.0",
    "rollup": "^4.3.0",
    "rollup-plugin-copy": "^3.5.0",
    "sinon": "^18.0.0",
    "snazzy": "^9.0.0",
    "standard": "17.1.0"
  },
  "funding": [{
    "type": "GitHub",
    "url": "https://github.com/sponsors/jankapunkt"
  },{
    "type": "PayPal",
    "url": "https://paypal.me/kuesterjan"
  }],
  "engines": {
    "node": ">= 14.x"
  },
  "files": [
    "dist",
    "API.md",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "standard": {
    "ignore": [
      "dist",
      "docs"
    ]
  }
}
