mirror of
https://github.com/hectorm/otpauth.git
synced 2026-05-07 20:12:27 +00:00
0c476aa78b
Bumps the npm-development-dependencies group with 3 updates: [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js), [eslint](https://github.com/eslint/eslint) and [rollup](https://github.com/rollup/rollup). Updates `@eslint/js` from 9.0.0 to 9.1.1 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/commits/HEAD/packages/js) Updates `eslint` from 9.0.0 to 9.1.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v9.0.0...v9.1.0) Updates `rollup` from 4.14.3 to 4.16.1 - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup/compare/v4.14.3...v4.16.1) --- updated-dependencies: - dependency-name: "@eslint/js" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development-dependencies - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development-dependencies - dependency-name: rollup dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
138 lines
4.7 KiB
JSON
138 lines
4.7 KiB
JSON
{
|
|
"name": "otpauth",
|
|
"version": "9.2.3",
|
|
"description": "One Time Password (HOTP/TOTP) library for Node.js, Deno, Bun and browsers",
|
|
"keywords": [
|
|
"otp",
|
|
"hotp",
|
|
"totp",
|
|
"one time password",
|
|
"2fa",
|
|
"2 factor",
|
|
"two factor",
|
|
"two-factor",
|
|
"2step",
|
|
"2 step",
|
|
"two step",
|
|
"two-step",
|
|
"auth",
|
|
"authenticator",
|
|
"google authenticator"
|
|
],
|
|
"author": "Héctor Molinero Fernández <hector@molinero.dev>",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/hectorm/otpauth",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/hectorm/otpauth.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/hectorm/otpauth/issues"
|
|
},
|
|
"funding": "https://github.com/hectorm/otpauth?sponsor=1",
|
|
"type": "module",
|
|
"types": "./dist/otpauth.d.ts",
|
|
"main": "./dist/otpauth.node.cjs",
|
|
"browser": "./dist/otpauth.esm.js",
|
|
"exports": {
|
|
".": {
|
|
"types": {
|
|
"import": "./dist/otpauth.d.ts",
|
|
"require": "./dist/otpauth.d.cts"
|
|
},
|
|
"bun": "./dist/otpauth.esm.js",
|
|
"deno": "./dist/otpauth.esm.js",
|
|
"node": {
|
|
"import": "./dist/otpauth.node.mjs",
|
|
"require": "./dist/otpauth.node.cjs"
|
|
},
|
|
"default": "./dist/otpauth.esm.js"
|
|
},
|
|
"./dist/*": {
|
|
"types": {
|
|
"import": "./dist/otpauth.d.ts",
|
|
"require": "./dist/otpauth.d.cts"
|
|
},
|
|
"default": "./dist/*"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"scripts": {
|
|
"all": "run-s lint types build docs test",
|
|
"lint": "run-s lint:*",
|
|
"lint:eslint": "eslint --max-warnings 0 ./",
|
|
"lint:prettier": "prettier --list-different ./",
|
|
"format": "run-s format:*",
|
|
"format:eslint": "eslint --fix ./",
|
|
"format:prettier": "prettier --write ./",
|
|
"types": "run-s types:clean types:compile",
|
|
"types:clean": "rimraf ./types/",
|
|
"types:compile": "tsc",
|
|
"build": "run-s build:clean build:compile",
|
|
"build:clean": "rimraf ./dist/",
|
|
"build:compile": "rollup -c",
|
|
"docs": "run-s docs:clean docs:compile",
|
|
"docs:clean": "rimraf ./docs/",
|
|
"docs:compile": "typedoc ./src/index.js --readme none --out ./docs/",
|
|
"test": "run-s test:*",
|
|
"test:node": "run-s test:node:*",
|
|
"test:node:esm": "run-s test:node:esm:*",
|
|
"test:node:esm:unmin": "node ./test/node.test.mjs",
|
|
"test:node:esm:min": "node ./test/node.test.min.mjs",
|
|
"test:node:cjs": "run-s test:node:cjs:*",
|
|
"test:node:cjs:unmin": "node ./test/node.test.cjs",
|
|
"test:node:cjs:min": "node ./test/node.test.min.cjs",
|
|
"test:deno": "run-s test:deno:*",
|
|
"test:deno:esm": "run-s test:deno:esm:*",
|
|
"test:deno:esm:unmin": "deno test --no-npm --allow-read=./test/,./dist/ --allow-net=deno.land ./test/deno.test.mjs",
|
|
"test:deno:esm:min": "deno test --no-npm --allow-read=./test/,./dist/ --allow-net=deno.land ./test/deno.test.min.mjs",
|
|
"test:bun": "run-s test:bun:*",
|
|
"test:bun:esm": "run-s test:bun:esm:*",
|
|
"test:bun:esm:unmin": "bun test ./test/bun.test.mjs",
|
|
"test:bun:esm:min": "bun test ./test/bun.test.min.mjs ",
|
|
"test:browser": "run-s test:browser:*",
|
|
"test:browser:chromium": "run-s test:browser:chromium:*",
|
|
"test:browser:chromium:umd": "run-s test:browser:chromium:umd:*",
|
|
"test:browser:chromium:umd:unmin": "node ./test/browser.test.mjs chromium",
|
|
"test:browser:chromium:umd:min": "node ./test/browser.test.min.mjs chromium",
|
|
"test:browser:firefox": "run-s test:browser:firefox:*",
|
|
"test:browser:firefox:umd": "run-s test:browser:firefox:umd:*",
|
|
"test:browser:firefox:umd:unmin": "node ./test/browser.test.mjs firefox",
|
|
"test:browser:firefox:umd:min": "node ./test/browser.test.min.mjs firefox",
|
|
"test:browser:webkit": "run-s test:browser:webkit:*",
|
|
"test:browser:webkit:umd": "run-s test:browser:webkit:umd:*",
|
|
"test:browser:webkit:umd:unmin": "node ./test/browser.test.mjs webkit",
|
|
"test:browser:webkit:umd:min": "node ./test/browser.test.min.mjs webkit",
|
|
"version": "run-s all && git add -A ./types/ ./dist/ ./docs/"
|
|
},
|
|
"dependencies": {
|
|
"jssha": "~3.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "~7.24.4",
|
|
"@babel/preset-env": "~7.24.4",
|
|
"@eslint/js": "~9.1.1",
|
|
"@rollup/plugin-babel": "~6.0.4",
|
|
"@rollup/plugin-node-resolve": "~15.2.3",
|
|
"@rollup/plugin-replace": "~5.0.5",
|
|
"@rollup/plugin-virtual": "~3.0.2",
|
|
"@types/node": "~20.12.7",
|
|
"chai": "~5.1.0",
|
|
"eslint": "~9.1.0",
|
|
"eslint-config-prettier": "~9.1.0",
|
|
"globals": "~15.0.0",
|
|
"mocha": "~10.4.0",
|
|
"npm-run-all2": "~6.1.2",
|
|
"playwright": "~1.43.1",
|
|
"prettier": "~3.2.5",
|
|
"rimraf": "~5.0.5",
|
|
"rollup": "~4.16.1",
|
|
"rollup-plugin-dts": "~6.1.0",
|
|
"rollup-plugin-esbuild": "~6.1.1",
|
|
"typedoc": "~0.25.13",
|
|
"typescript": "~5.4.5"
|
|
}
|
|
}
|