@feasibleone/blong-login 1.0.6 → 1.0.7

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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.7](https://github.com/feasibleone/blong/compare/blong-login-v1.0.6...blong-login-v1.0.7) (2026-01-25)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * add exports for package.json in login and test modules ([5041cb7](https://github.com/feasibleone/blong/commit/5041cb7c8d63cb631f5c7ba27cc8c840deade2c9))
9
+ * add include field for package.json and TypeScript files in tsconfig.json ([9086f1d](https://github.com/feasibleone/blong/commit/9086f1d49cfe30c730bb9e473f6a1c6484917d76))
10
+ * add package.json export to login and test modules ([59a9a60](https://github.com/feasibleone/blong/commit/59a9a608177bed306b47d9969d66e89ba12ecf50))
11
+ * correct exports field in package.json and add .npmignore for test module ([1cf8edc](https://github.com/feasibleone/blong/commit/1cf8edc22acfb00437f84c7fcb13591d918544ff))
12
+ * filter out falsy values in loaded modules and update tsconfig includes ([cb00bb4](https://github.com/feasibleone/blong/commit/cb00bb4afce43ad58281bc290d8f94e1cd8f887e))
13
+
3
14
  ## [1.0.6](https://github.com/feasibleone/blong/compare/blong-login-v1.0.5...blong-login-v1.0.6) (2026-01-25)
4
15
 
5
16
 
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@feasibleone/blong-login",
3
+ "description": "Login and authentication utilities for the Blong framework",
4
+ "keywords": [
5
+ "blong",
6
+ "rad",
7
+ "framework"
8
+ ],
9
+ "repository": {
10
+ "url": "git+https://github.com/feasibleone/blong.git"
11
+ },
12
+ "scripts": {
13
+ "build": "heft build --clean",
14
+ "ci-publish": "npm publish --access public --provenance"
15
+ },
16
+ "exports": {
17
+ "./server.js": "./dist/server.js",
18
+ "./browser.js": "./dist/browser.js",
19
+ "./dist/package.json": "./package.json",
20
+ "./package.json": "./package.json"
21
+ },
22
+ "type": "module",
23
+ "version": "1.0.7",
24
+ "dependencies": {
25
+ "@sinclair/typebox": "^0.33.7",
26
+ "ut-function.cbc": "^1.1.6",
27
+ "jose": "^5.7.0"
28
+ },
29
+ "peerDependencies": {
30
+ "@feasibleone/blong": "^1.0.0"
31
+ },
32
+ "devDependencies": {
33
+ "@feasibleone/blong": "workspace:^1.0.0",
34
+ "@rushstack/eslint-config": "^4.0.1",
35
+ "@rushstack/heft": "^1.1.7",
36
+ "@rushstack/heft-lint-plugin": "^1.1.10",
37
+ "@rushstack/heft-typescript-plugin": "^1.1.7",
38
+ "eslint": "~9.39.2",
39
+ "typescript": "^5.5.4"
40
+ }
41
+ }
package/package.json CHANGED
@@ -13,12 +13,14 @@
13
13
  "build": "heft build --clean",
14
14
  "ci-publish": "npm publish --access public --provenance"
15
15
  },
16
- "export": {
17
- "/server.js": "./dist/server.js",
18
- "/browser.js": "./dist/browser.js"
16
+ "exports": {
17
+ "./server.js": "./dist/server.js",
18
+ "./browser.js": "./dist/browser.js",
19
+ "./dist/package.json": "./package.json",
20
+ "./package.json": "./package.json"
19
21
  },
20
22
  "type": "module",
21
- "version": "1.0.6",
23
+ "version": "1.0.7",
22
24
  "dependencies": {
23
25
  "@sinclair/typebox": "^0.33.7",
24
26
  "ut-function.cbc": "^1.1.6",