@fgv/ts-extras-argon2 5.1.0-47 → 5.1.0-48

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.
Files changed (37) hide show
  1. package/LICENSE +21 -0
  2. package/package.json +18 -8
  3. package/.rush/temp/chunked-rush-logs/ts-extras-argon2.build.chunks.jsonl +0 -9
  4. package/.rush/temp/eb061fb1c7e3a355a03b204add873a27586efa0d.tar.log +0 -48
  5. package/.rush/temp/operation/build/all.log +0 -9
  6. package/.rush/temp/operation/build/log-chunks.jsonl +0 -9
  7. package/.rush/temp/operation/build/state.json +0 -3
  8. package/.rush/temp/shrinkwrap-deps.json +0 -694
  9. package/config/api-extractor.json +0 -343
  10. package/config/jest.config.json +0 -14
  11. package/config/rig.json +0 -4
  12. package/dist/test/unit/argon2/crossRuntime.test.js +0 -117
  13. package/dist/test/unit/argon2/crossRuntime.test.js.map +0 -1
  14. package/dist/test/unit/argon2/nodeArgon2Provider.test.js +0 -144
  15. package/dist/test/unit/argon2/nodeArgon2Provider.test.js.map +0 -1
  16. package/eslint.config.js +0 -15
  17. package/etc/ts-extras-argon2.api.md +0 -20
  18. package/lib/test/unit/argon2/crossRuntime.test.d.ts +0 -2
  19. package/lib/test/unit/argon2/crossRuntime.test.d.ts.map +0 -1
  20. package/lib/test/unit/argon2/crossRuntime.test.js +0 -119
  21. package/lib/test/unit/argon2/crossRuntime.test.js.map +0 -1
  22. package/lib/test/unit/argon2/nodeArgon2Provider.test.d.ts +0 -2
  23. package/lib/test/unit/argon2/nodeArgon2Provider.test.d.ts.map +0 -1
  24. package/lib/test/unit/argon2/nodeArgon2Provider.test.js +0 -146
  25. package/lib/test/unit/argon2/nodeArgon2Provider.test.js.map +0 -1
  26. package/rush-logs/ts-extras-argon2.build.cache.log +0 -3
  27. package/rush-logs/ts-extras-argon2.build.log +0 -9
  28. package/src/index.ts +0 -21
  29. package/src/packlets/argon2/index.ts +0 -25
  30. package/src/packlets/argon2/nodeArgon2Provider.ts +0 -101
  31. package/src/test/unit/argon2/crossRuntime.test.ts +0 -137
  32. package/src/test/unit/argon2/nodeArgon2Provider.test.ts +0 -186
  33. package/temp/build/lint/_eslint-5eVG3S6w.json +0 -26
  34. package/temp/build/typescript/ts_8nwakTlr.json +0 -1
  35. package/temp/ts-extras-argon2.api.json +0 -399
  36. package/temp/ts-extras-argon2.api.md +0 -20
  37. package/tsconfig.json +0 -8
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Erik Fortune
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fgv/ts-extras-argon2",
3
- "version": "5.1.0-47",
3
+ "version": "5.1.0-48",
4
4
  "description": "Argon2id key derivation for Node.js (wraps argon2/kelektiv)",
5
5
  "main": "lib/index.js",
6
6
  "types": "dist/ts-extras-argon2.d.ts",
@@ -14,6 +14,16 @@
14
14
  "types": "./dist/ts-extras-argon2.d.ts"
15
15
  }
16
16
  },
17
+ "files": [
18
+ "lib",
19
+ "dist",
20
+ "CHANGELOG.json",
21
+ "README.md",
22
+ "LICENSE",
23
+ "!lib/test",
24
+ "!dist/test",
25
+ "!**/*.test.*"
26
+ ],
17
27
  "sideEffects": false,
18
28
  "keywords": [
19
29
  "typescript",
@@ -57,18 +67,18 @@
57
67
  "@rushstack/heft-node-rig": "2.11.27",
58
68
  "@types/heft-jest": "1.0.6",
59
69
  "eslint-plugin-tsdoc": "~0.5.2",
60
- "@fgv/heft-dual-rig": "5.1.0-47",
61
- "@fgv/ts-utils": "5.1.0-47",
62
- "@fgv/ts-extras": "5.1.0-47",
63
- "@fgv/ts-utils-jest": "5.1.0-47",
64
- "@fgv/ts-web-extras-argon2": "5.1.0-47"
70
+ "@fgv/heft-dual-rig": "5.1.0-48",
71
+ "@fgv/ts-extras": "5.1.0-48",
72
+ "@fgv/ts-utils": "5.1.0-48",
73
+ "@fgv/ts-utils-jest": "5.1.0-48",
74
+ "@fgv/ts-web-extras-argon2": "5.1.0-48"
65
75
  },
66
76
  "dependencies": {
67
77
  "argon2": "~0.44.0"
68
78
  },
69
79
  "peerDependencies": {
70
- "@fgv/ts-extras": "5.1.0-47",
71
- "@fgv/ts-utils": "5.1.0-47"
80
+ "@fgv/ts-extras": "5.1.0-48",
81
+ "@fgv/ts-utils": "5.1.0-48"
72
82
  },
73
83
  "scripts": {
74
84
  "build": "heft build --clean",
@@ -1,9 +0,0 @@
1
- {"kind":"O","text":"Invoking: heft build --clean \n"}
2
- {"kind":"O","text":" ---- build started ---- \n"}
3
- {"kind":"O","text":"[build:typescript] The TypeScript compiler version 5.9.3 is newer than the latest version that was tested with Heft (5.8); it may not work correctly.\n"}
4
- {"kind":"O","text":"[build:typescript] Using TypeScript version 5.9.3\n"}
5
- {"kind":"O","text":"[build:lint] Using ESLint version 9.39.5\n"}
6
- {"kind":"O","text":"[build:api-extractor] Using API Extractor version 7.58.9\n"}
7
- {"kind":"O","text":"[build:api-extractor] Analysis will use the bundled TypeScript version 5.9.3\n"}
8
- {"kind":"O","text":" ---- build finished (14.490s) ---- \n"}
9
- {"kind":"O","text":"-------------------- Finished (14.497s) --------------------\n"}
@@ -1,48 +0,0 @@
1
- Start time: Fri Aug 07 2026 01:16:27 GMT+0000 (Coordinated Universal Time)
2
- Invoking "/usr/bin/tar -c -f /home/runner/work/fgv/fgv/common/temp/build-cache/eb061fb1c7e3a355a03b204add873a27586efa0d-467bad774dee96ac.temp -z --files-from=-"
3
-
4
- ======= BEGIN PROCESS INPUT ======
5
- .rush/temp/operation/build/all.log
6
- .rush/temp/operation/build/log-chunks.jsonl
7
- .rush/temp/operation/build/state.json
8
- dist/index.js
9
- dist/index.js.map
10
- dist/packlets/argon2/index.js
11
- dist/packlets/argon2/index.js.map
12
- dist/packlets/argon2/nodeArgon2Provider.js
13
- dist/packlets/argon2/nodeArgon2Provider.js.map
14
- dist/test/unit/argon2/crossRuntime.test.js
15
- dist/test/unit/argon2/crossRuntime.test.js.map
16
- dist/test/unit/argon2/nodeArgon2Provider.test.js
17
- dist/test/unit/argon2/nodeArgon2Provider.test.js.map
18
- dist/ts-extras-argon2.d.ts
19
- dist/tsdoc-metadata.json
20
- lib/index.d.ts
21
- lib/index.d.ts.map
22
- lib/index.js
23
- lib/index.js.map
24
- lib/packlets/argon2/index.d.ts
25
- lib/packlets/argon2/index.d.ts.map
26
- lib/packlets/argon2/index.js
27
- lib/packlets/argon2/index.js.map
28
- lib/packlets/argon2/nodeArgon2Provider.d.ts
29
- lib/packlets/argon2/nodeArgon2Provider.d.ts.map
30
- lib/packlets/argon2/nodeArgon2Provider.js
31
- lib/packlets/argon2/nodeArgon2Provider.js.map
32
- lib/test/unit/argon2/crossRuntime.test.d.ts
33
- lib/test/unit/argon2/crossRuntime.test.d.ts.map
34
- lib/test/unit/argon2/crossRuntime.test.js
35
- lib/test/unit/argon2/crossRuntime.test.js.map
36
- lib/test/unit/argon2/nodeArgon2Provider.test.d.ts
37
- lib/test/unit/argon2/nodeArgon2Provider.test.d.ts.map
38
- lib/test/unit/argon2/nodeArgon2Provider.test.js
39
- lib/test/unit/argon2/nodeArgon2Provider.test.js.map
40
- temp/build/lint/_eslint-5eVG3S6w.json
41
- temp/build/typescript/ts_8nwakTlr.json
42
- temp/ts-extras-argon2.api.json
43
- temp/ts-extras-argon2.api.md
44
- ======== END PROCESS INPUT =======
45
- ======= BEGIN PROCESS OUTPUT =======
46
- ======== END PROCESS OUTPUT ========
47
-
48
- Exited with code "0"
@@ -1,9 +0,0 @@
1
- Invoking: heft build --clean
2
- ---- build started ----
3
- [build:typescript] The TypeScript compiler version 5.9.3 is newer than the latest version that was tested with Heft (5.8); it may not work correctly.
4
- [build:typescript] Using TypeScript version 5.9.3
5
- [build:lint] Using ESLint version 9.39.5
6
- [build:api-extractor] Using API Extractor version 7.58.9
7
- [build:api-extractor] Analysis will use the bundled TypeScript version 5.9.3
8
- ---- build finished (14.490s) ----
9
- -------------------- Finished (14.497s) --------------------
@@ -1,9 +0,0 @@
1
- {"kind":"O","text":"Invoking: heft build --clean \n"}
2
- {"kind":"O","text":" ---- build started ---- \n"}
3
- {"kind":"O","text":"[build:typescript] The TypeScript compiler version 5.9.3 is newer than the latest version that was tested with Heft (5.8); it may not work correctly.\n"}
4
- {"kind":"O","text":"[build:typescript] Using TypeScript version 5.9.3\n"}
5
- {"kind":"O","text":"[build:lint] Using ESLint version 9.39.5\n"}
6
- {"kind":"O","text":"[build:api-extractor] Using API Extractor version 7.58.9\n"}
7
- {"kind":"O","text":"[build:api-extractor] Analysis will use the bundled TypeScript version 5.9.3\n"}
8
- {"kind":"O","text":" ---- build finished (14.490s) ---- \n"}
9
- {"kind":"O","text":"-------------------- Finished (14.497s) --------------------\n"}
@@ -1,3 +0,0 @@
1
- {
2
- "nonCachedDurationMs": 15264.656452999989
3
- }