password-manager-autofill-utilities
Version:
TypeScript utilities to control password manager autofill behavior across different password managers
90 lines (89 loc) • 2.53 kB
JSON
{
"name": "password-manager-autofill-utilities",
"version": "1.0.2",
"author": "Ryan Skidmore <github@ryanskidmore.co.uk>",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanskidmore/password-manager-autofill-utilities.git"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"devDependencies": {
"@types/bun": "^1.2.14",
"@types/jest": "^29.5.14",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.5.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"bugs": {
"url": "https://github.com/ryanskidmore/password-manager-autofill-utilities/issues"
},
"description": "TypeScript utilities to control password manager autofill behavior across different password managers",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/ryanskidmore/password-manager-autofill-utilities#readme",
"keywords": [
"password-manager",
"autofill",
"1password",
"lastpass",
"bitwarden",
"dashlane",
"form",
"input",
"typescript",
"react",
"utilities",
"security",
"privacy",
"web-security",
"form-control",
"browser-extension"
],
"license": "MIT",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"scripts": {
"build": "rollup -c rollup.config.mjs",
"build:watch": "rollup -c rollup.config.mjs -w",
"dev": "rollup -c rollup.config.mjs -w",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"clean": "rimraf dist",
"example:install": "cd examples/react-example && bun install",
"example:build": "cd examples/react-example && bun run build",
"example:dev": "cd examples/react-example && bun run dev",
"example:type-check": "cd examples/react-example && bun run type-check",
"validate": "bun run clean && bun run build && bun test && bun run lint && bun run type-check",
"prepublishOnly": "bun run validate"
},
"types": "dist/index.d.ts"
}