mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2026-03-16 05:15:19 +00:00
Bumps the dev-dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.39.2` | `9.39.3` | | [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin) | `5.7.1` | `5.9.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.9` | `24.10.15` | | [bn.js](https://github.com/indutny/bn.js) | `5.2.2` | `5.2.3` | | [eslint](https://github.com/eslint/eslint) | `9.39.2` | `9.39.3` | | [rollup](https://github.com/rollup/rollup) | `4.57.1` | `4.59.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.54.0` | `8.56.1` | Updates `@eslint/js` from 9.39.2 to 9.39.3 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/commits/v9.39.3/packages/js) Updates `@stylistic/eslint-plugin` from 5.7.1 to 5.9.0 - [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases) - [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v5.9.0/packages/eslint-plugin) Updates `@types/node` from 24.10.9 to 24.10.15 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `bn.js` from 5.2.2 to 5.2.3 - [Release notes](https://github.com/indutny/bn.js/releases) - [Changelog](https://github.com/indutny/bn.js/blob/master/CHANGELOG.md) - [Commits](https://github.com/indutny/bn.js/compare/v5.2.2...v5.2.3) Updates `eslint` from 9.39.2 to 9.39.3 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/compare/v9.39.2...v9.39.3) Updates `rollup` from 4.57.1 to 4.59.0 - [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.57.1...v4.59.0) Updates `typescript-eslint` from 8.54.0 to 8.56.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.56.1/packages/typescript-eslint) --- updated-dependencies: - dependency-name: "@eslint/js" dependency-version: 9.39.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: "@stylistic/eslint-plugin" dependency-version: 5.9.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: "@types/node" dependency-version: 24.10.15 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: bn.js dependency-version: 5.2.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: eslint dependency-version: 9.39.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: rollup dependency-version: 4.59.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: typescript-eslint dependency-version: 8.56.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
123 lines
4.2 KiB
JSON
123 lines
4.2 KiB
JSON
{
|
|
"name": "openpgp",
|
|
"description": "OpenPGP.js is a Javascript implementation of the OpenPGP protocol. This is defined in RFC 4880.",
|
|
"version": "6.3.0",
|
|
"license": "LGPL-3.0+",
|
|
"homepage": "https://openpgpjs.org/",
|
|
"engines": {
|
|
"node": ">= 18.0.0"
|
|
},
|
|
"keywords": [
|
|
"crypto",
|
|
"pgp",
|
|
"gpg",
|
|
"openpgp"
|
|
],
|
|
"main": "dist/node/openpgp.min.cjs",
|
|
"module": "dist/node/openpgp.min.mjs",
|
|
"browser": {
|
|
"./dist/node/openpgp.min.cjs": "./dist/openpgp.min.js",
|
|
"./dist/node/openpgp.min.mjs": "./dist/openpgp.min.mjs"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./openpgp.d.ts",
|
|
"browser": "./dist/openpgp.min.mjs",
|
|
"import": "./dist/node/openpgp.mjs",
|
|
"require": "./dist/node/openpgp.min.cjs"
|
|
},
|
|
"./lightweight": {
|
|
"types": "./openpgp.d.ts",
|
|
"browser": "./dist/lightweight/openpgp.min.mjs"
|
|
}
|
|
},
|
|
"types": "openpgp.d.ts",
|
|
"type": "module",
|
|
"directories": {
|
|
"lib": "src"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"lightweight/",
|
|
"openpgp.d.ts",
|
|
"**/*.d.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "rollup --config",
|
|
"build-test": "npm run build -- --config-build-only=test",
|
|
"prepare": "npm run build",
|
|
"test": "mocha --timeout 120000 test/unittests.js",
|
|
"test-type-definitions": "tsc --project test/typescript/tsconfig.test.json && tsx test/typescript/definitions.ts",
|
|
"benchmark-time": "node test/benchmarks/time.js",
|
|
"benchmark-memory-usage": "node test/benchmarks/memory_usage.js",
|
|
"prebrowsertest": "npm run build-test",
|
|
"browsertest": "web-test-runner --config test/web-test-runner.config.js --group local --manual --open",
|
|
"test-browser": "web-test-runner --config test/web-test-runner.config.js --group local --playwright --browsers chromium firefox webkit",
|
|
"test-browser:ci": "web-test-runner --config test/web-test-runner.config.js --group headless:ci",
|
|
"test-browserstack": "web-test-runner --config test/web-test-runner.browserstack.config.js",
|
|
"coverage": "c8 npm test",
|
|
"lint": "eslint .",
|
|
"docs": "jsdoc --configure .jsdocrc.cjs --destination docs && printf '%s' 'docs.openpgpjs.org' > docs/CNAME",
|
|
"preversion": "rm -rf dist docs node_modules && npm ci && npm test",
|
|
"version": "npm run docs && git add -A docs",
|
|
"postversion": "git push --follow-tags && npm publish"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.3",
|
|
"@noble/ciphers": "^1.3.0",
|
|
"@noble/curves": "^1.9.7",
|
|
"@noble/hashes": "^1.8.0",
|
|
"@openpgp/jsdoc": "^4.0.4",
|
|
"@openpgp/tweetnacl": "^1.0.4-2",
|
|
"@openpgp/unbzip2-stream": "^2.0.0",
|
|
"@openpgp/web-stream-tools": "~0.3.0",
|
|
"@rollup/plugin-alias": "^6.0.0",
|
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
"@rollup/plugin-replace": "^6.0.3",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
"@rollup/plugin-wasm": "^6.2.2",
|
|
"@stylistic/eslint-plugin": "^5.9.0",
|
|
"@types/chai": "^5.2.3",
|
|
"@types/node": "^24.10.15",
|
|
"@types/sinon": "^21.0.0",
|
|
"@web/test-runner": "^0.20.2",
|
|
"@web/test-runner-browserstack": "npm:@openpgp/wtr-test-runner-browserstack@0.8.1-patch.0",
|
|
"@web/test-runner-mocha": "^0.9.0",
|
|
"@web/test-runner-playwright": "^0.11.1",
|
|
"argon2id": "^1.0.1",
|
|
"benchmark": "^2.1.4",
|
|
"better-docs": "^2.7.3",
|
|
"bn.js": "^5.2.3",
|
|
"c8": "^10.1.3",
|
|
"chai": "^6.2.2",
|
|
"chai-as-promised": "^8.0.2",
|
|
"eckey-utils": "^0.7.14",
|
|
"eslint": "^9.39.3",
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
"eslint-plugin-chai-friendly": "^1.1.0",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-jsdoc": "^61.7.1",
|
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
"fflate": "^0.8.2",
|
|
"globals": "^16.5.0",
|
|
"mocha": "^11.7.5",
|
|
"playwright": "^1.58.1",
|
|
"rollup": "^4.59.0",
|
|
"sinon": "^21.0.1",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.56.1",
|
|
"web-streams-polyfill": "^4.2.0"
|
|
},
|
|
"overrides": {
|
|
"@web/dev-server-core": "npm:@openpgp/wtr-dev-server-core@0.7.3-patch.1",
|
|
"@web/test-runner-core": "npm:@openpgp/wtr-test-runner-core@0.13.4-patch.3"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openpgpjs/openpgpjs"
|
|
}
|
|
}
|