New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@accessible/visually-hidden

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@accessible/visually-hidden - npm Package Compare versions

Comparing version

to
1.1.0

dist/esm/index.mjs

51

package.json
{
"name": "@accessible/visually-hidden",
"version": "1.0.5",
"version": "1.1.0",
"homepage": "https://github.com/accessible-ui/visually-hidden#readme",

@@ -20,15 +20,33 @@ "repository": "github:accessible-ui/visually-hidden",

],
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"source": "src/index.tsx",
"types": "types/index.d.ts",
"files": [
"/dist"
"/dist",
"/src",
"/types"
],
"exports": {
".": {
"browser": "./dist/module/index.js",
"import": "./dist/esm/index.mjs",
"require": "./dist/main/index.js",
"source": "./src/index.tsx",
"types": "./types/index.d.ts",
"default": "./dist/main/index.js"
},
"./package.json": "./package.json",
"./": "./"
},
"sideEffects": false,
"scripts": {
"build": "npm run build:cjs && npm run build:es && npm run build:types",
"build:cjs": "babel src -d dist/cjs -x .ts,.tsx --ignore \"**/*.test.ts\",\"**/test.ts\",\"**/*.test.tsx\",\"**/test.tsx\" --delete-dir-on-start",
"build:es": "cross-env BABEL_ENV=es babel src -d dist/es -x .ts,.tsx --ignore \"**/*.test.ts\",\"**/test.ts\",\"**/*.test.tsx\",\"**/test.tsx\" --delete-dir-on-start",
"build:types": "tsc -p tsconfig.json -d --outDir dist/es --emitDeclarationOnly && mkdir -p dist/cjs && cp -R dist/es/**.d.ts dist/cjs && rimraf dist/**/*.test.d.ts",
"build": "npm run build-esm && npm run build-main && npm run build-module && npm run build-types",
"build-esm": "npm run compile -- -d dist/esm --env-name esm --out-file-extension .mjs",
"build-main": "npm run compile -- -d dist/main --env-name main",
"build-module": "npm run compile -- -d dist/module --env-name module",
"build-types": "tsc -p tsconfig.json -d --outDir types --emitDeclarationOnly",
"check-types": "tsc --noEmit -p tsconfig.json",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,md,yml,json,babelrc,eslintrc,prettierrc}\"",
"compile": "babel src -x .ts,.tsx --ignore \"**/*.test.ts\",\"**/*.test.tsx\" --delete-dir-on-start",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,md,yml,json,eslintrc,prettierrc}\"",
"lint": "eslint . --ext .ts,.tsx",

@@ -41,3 +59,3 @@ "prepublishOnly": "npm run lint && npm run test && npm run build && npm run format",

"hooks": {
"pre-commit": "lint-staged && npm run build:types"
"pre-commit": "npm run build-types && git add types && lint-staged"
}

@@ -50,3 +68,3 @@ },

],
"**/*.{md,yml,json,babelrc,eslintrc,prettierrc}": [
"**/*.{md,yml,json,eslintrc,prettierrc}": [
"prettier --write"

@@ -61,2 +79,3 @@ ]

"@testing-library/react-hooks": "latest",
"@testing-library/user-event": "latest",
"@types/jest": "latest",

@@ -67,5 +86,4 @@ "@types/react": "latest",

"@typescript-eslint/parser": "latest",
"babel-plugin-optimize-react": "^0.0.4",
"babel-plugin-typescript-to-proptypes": "^1.1.0",
"cross-env": "latest",
"babel-plugin-annotate-pure-calls": "latest",
"babel-plugin-optimize-react": "latest",
"eslint": "latest",

@@ -83,3 +101,2 @@ "eslint-import-resolver-jest": "latest",

"react-test-renderer": "latest",
"rimraf": "^2.6.3",
"ts-jest": "latest",

@@ -90,5 +107,5 @@ "typescript": "latest"

"peerDependencies": {
"prop-types": ">=15.6",
"react": ">=16"
"react": ">=16.8",
"react-dom": ">=16.8"
}
}

@@ -42,3 +42,3 @@ <hr>

export default props => (
export default (props) => (
<VisuallyHidden>

@@ -45,0 +45,0 @@ <input type="checkbox" {...props} />