@lanonasis/oauth-client 1.0.2 → 1.2.1
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,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lanonasis/oauth-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "OAuth client for Lan Onasis MCP integration",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Lan Onasis",
|
|
8
|
-
"main": "./dist/index.
|
|
8
|
+
"main": "./dist/index.cjs",
|
|
9
9
|
"module": "./dist/index.mjs",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
11
|
"files": [
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "
|
|
18
|
+
"url": "https://github.com/lanonasis/v-secure.git",
|
|
19
19
|
"directory": "oauth-client"
|
|
20
20
|
},
|
|
21
21
|
"bugs": {
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
".": {
|
|
27
27
|
"types": "./dist/index.d.ts",
|
|
28
28
|
"import": "./dist/index.mjs",
|
|
29
|
-
"require": "./dist/index.
|
|
29
|
+
"require": "./dist/index.cjs"
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
|
-
"build": "tsup
|
|
34
|
-
"dev": "tsup
|
|
33
|
+
"build": "tsup --config tsup.config.ts",
|
|
34
|
+
"dev": "tsup --watch --config tsup.config.ts",
|
|
35
35
|
"test": "bun test",
|
|
36
36
|
"lint": "eslint src"
|
|
37
37
|
},
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
"@supabase/supabase-js": "^2.0.0"
|
|
63
63
|
},
|
|
64
64
|
"publishConfig": {
|
|
65
|
+
"registry": "https://registry.npmjs.org/",
|
|
65
66
|
"access": "public"
|
|
66
67
|
}
|
|
67
68
|
}
|
|
File without changes
|