You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-say

Package Overview
Dependencies
Maintainers
2
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-say - npm Package Compare versions

Comparing version

to
2.2.0-main.4564562

dist/react-say.d.mts

94

package.json
{
"name": "react-say",
"version": "2.1.1-master.22688e3",
"description": "",
"version": "2.2.0-main.4564562",
"description": "A React component that synthesis text into speech using Web Speech API",
"files": [
"./dist/"
],
"exports": {
".": {
"import": {
"types": "./dist/react-say.d.mts",
"default": "./dist/react-say.mjs"
},
"require": {
"types": "./dist/react-say.d.ts",
"default": "./dist/react-say.js"
}
}
},
"main": "./dist/react-say.js",
"typings": "./dist/react-say.d.ts",
"scripts": {
"build": "tsup",
"bump": "npm run bump:prod && npm run bump:dev",
"bump:dev": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '(.pinDependencies // {}) as $P | (.localPeerDependencies // {}) as $L | (.devDependencies // {}) | to_entries | map(select(.key as $K | $L | has($K) | not)) | map(.key + \"@\" + ($P[.key] // [\"latest\"])[0]) | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install $PACKAGES_TO_BUMP || true",
"bump:prod": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '(.pinDependencies // {}) as $P | (.localPeerDependencies // {}) as $L | (.dependencies // {}) | to_entries | map(select(.key as $K | $L | has($K) | not)) | map(.key + \"@\" + ($P[.key] // [\"latest\"])[0]) | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install $PACKAGES_TO_BUMP || true",
"precommit": "npm run precommit:eslint && npm run precommit:publint && npm run precommit:typescript:production && npm run precommit:typescript:test",
"precommit:eslint": "ESLINT_USE_FLAT_CONFIG=false eslint ./src/",
"precommit:publint": "publint",
"precommit:typescript:production": "tsc --noEmit --project ./src/tsconfig.precommit.production.json",
"precommit:typescript:test": "tsc --noEmit --project ./src/tsconfig.precommit.test.json",
"prepack": "cp ../../CHANGELOG.md . && cp ../../LICENSE . && cp ../../README.md .",
"switch": "cat package.json | jq --arg SWITCH_NAME $SWITCH_NAME -r '(.[\"switch:\" + $SWITCH_NAME] // {}) as $TEMPLATE | .devDependencies += ($TEMPLATE.devDependencies // {}) | .dependencies += ($TEMPLATE.dependencies // {})' | tee ./package.json.tmp && mv ./package.json.tmp ./package.json",
"test": "node --import ./happy-dom-env.ts --test ${CI:---watch} **/*.{spec,test}.{[jt]s,c[jt]s,m[jt]s}"
},
"repository": {
"type": "git",
"url": "https://github.com/compulim/react-say.git"
},
"keywords": [

@@ -16,8 +51,4 @@ "react",

],
"author": "William Wong <compulim@hotmail.com> (http://compulim.info/)",
"author": "William Wong (https://github.com/compulim)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/compulim/react-say.git"
},
"bugs": {

@@ -27,31 +58,38 @@ "url": "https://github.com/compulim/react-say/issues"

"homepage": "https://github.com/compulim/react-say#readme",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "babel --out-dir lib --ignore **/*.spec.js,**/*.test.js --source-maps inline src/",
"clean": "rimraf lib",
"start": "npm run build -- --watch",
"test": "jest"
"pinDependencies": {
"@types/react": [
"18"
],
"react": [
"18"
]
},
"peerDependencies": {
"react": ">= 16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@happy-dom/global-registrator": "^18.0.1",
"@testduet/given-when-then": "^0.1.0-main.334801c",
"@tsconfig/recommended": "^1.0.10",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^24.0.3",
"@types/react": "^18.3.23",
"esbuild": "^0.25.5",
"escape-string-regexp": "^4.0.0",
"expect": "^30.0.4",
"happy-dom": "^18.0.1",
"has-resolved": "^1.1.0",
"jest": "^27.2.5"
"prettier": "^3.5.3",
"publint": "^0.3.12",
"react": "^18.3.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@babel/runtime": "7.15.4",
"classnames": "2.3.1",
"event-as-promise": "1.0.5",
"memoize-one": "5.2.1"
},
"peerDependencies": {
"react": ">= 16.8.6"
"memoize-one": "5.2.1",
"prop-types": "15.8.1",
"react-say": "^2.2.0-main.4564562"
}
}