@lanonasis/oauth-client 1.2.1 → 1.2.2

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/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@lanonasis/oauth-client",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "type": "module",
5
- "description": "OAuth client for Lan Onasis MCP integration",
5
+ "description": "OAuth and API Key authentication client for Lan Onasis MCP integration",
6
6
  "license": "MIT",
7
7
  "author": "Lan Onasis",
8
8
  "main": "./dist/index.cjs",
9
9
  "module": "./dist/index.mjs",
10
10
  "types": "./dist/index.d.ts",
11
+ "browser": "./dist/browser.mjs",
11
12
  "files": [
12
13
  "dist",
13
14
  "README.md",
@@ -15,7 +16,7 @@
15
16
  ],
16
17
  "repository": {
17
18
  "type": "git",
18
- "url": "https://github.com/lanonasis/v-secure.git",
19
+ "url": "git+https://github.com/lanonasis/v-secure.git",
19
20
  "directory": "oauth-client"
20
21
  },
21
22
  "bugs": {
@@ -24,9 +25,14 @@
24
25
  "homepage": "https://github.com/lanonasis/v-secure/tree/main/oauth-client",
25
26
  "exports": {
26
27
  ".": {
28
+ "browser": "./dist/browser.mjs",
27
29
  "types": "./dist/index.d.ts",
28
30
  "import": "./dist/index.mjs",
29
31
  "require": "./dist/index.cjs"
32
+ },
33
+ "./browser": {
34
+ "types": "./dist/browser.d.ts",
35
+ "import": "./dist/browser.mjs"
30
36
  }
31
37
  },
32
38
  "scripts": {
@@ -45,9 +51,9 @@
45
51
  "desktop"
46
52
  ],
47
53
  "dependencies": {
48
- "node-fetch": "^3.3.2",
49
- "open": "^9.1.0",
50
- "keytar": "^7.9.0"
54
+ "cross-fetch": "^3.2.0",
55
+ "keytar": "^7.9.0",
56
+ "open": "^9.1.0"
51
57
  },
52
58
  "devDependencies": {
53
59
  "@eslint/js": "^9.17.0",