@renovatebot/pgp 0.0.0-semantic-release

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts ADDED
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Decrypt data with .NET wasm implementations of Bouncy Castle.
3
+ * @param key private key in PEM format
4
+ * @param data encrypted data in base64 format
5
+ * @param options runtime options
6
+ */
7
+ export async function decrypt(
8
+ key: string,
9
+ data: string,
10
+ options: { runtime: 'js-java' | 'wasm-java' | 'wasm-dotnet' },
11
+ ): Promise<string>;
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@renovatebot/pgp",
3
+ "version": "0.0.0-semantic-release",
4
+ "description": "PGP library for renovate",
5
+ "keywords": [
6
+ "renovate",
7
+ "pgp"
8
+ ],
9
+ "license": "Apache-2.0",
10
+ "author": "Michael Kriese <michael.kriese@gmx.de>",
11
+ "type": "module",
12
+ "files": [
13
+ "README.md",
14
+ "LICENSE",
15
+ "index.d.ts",
16
+ "dist/"
17
+ ],
18
+ "devDependencies": {
19
+ "@containerbase/semantic-release-pnpm": "1.3.0",
20
+ "@types/node": "22.15.35",
21
+ "@vitest/coverage-v8": "3.2.4",
22
+ "conventional-changelog-conventionalcommits": "9.1.0",
23
+ "husky": "9.1.7",
24
+ "lint-staged": "16.1.2",
25
+ "markdownlint-cli2": "0.18.1",
26
+ "prettier": "3.6.2",
27
+ "prettier-plugin-packagejson": "2.5.19",
28
+ "semantic-release": "25.0.1",
29
+ "typescript": "5.8.3",
30
+ "vitest": "3.2.4"
31
+ },
32
+ "engines": {
33
+ "node": "^22.11.0 || >=24.10.0",
34
+ "pnpm": "^10.0.0"
35
+ },
36
+ "scripts": {
37
+ "build": "./gradlew build && dotnet publish dotnet && node tools/patch-build.js",
38
+ "debug:teavm-wasm": "node --inspect-brk test/teavm/wasm.js",
39
+ "prettier": "PRETTIER_EXPERIMENTAL_CLI=1 prettier -c -u .",
40
+ "prettier:fix": "PRETTIER_EXPERIMENTAL_CLI=1 prettier -w -u .",
41
+ "test": "vitest run",
42
+ "test:teavm-wasm": "node test/teavm/wasm.js"
43
+ }
44
+ }