@lanonasis/oauth-client 1.0.0

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 ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@lanonasis/oauth-client",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "OAuth client for Lan Onasis MCP integration",
6
+ "license": "MIT",
7
+ "author": "Lan Onasis",
8
+ "main": "./dist/index.js",
9
+ "module": "./dist/index.mjs",
10
+ "types": "./dist/index.d.ts",
11
+ "files": [
12
+ "dist",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/lanonasis/lan-onasis-monorepo",
19
+ "directory": "packages/oauth-client"
20
+ },
21
+ "bugs": {
22
+ "url": "https://github.com/lanonasis/lan-onasis-monorepo/issues"
23
+ },
24
+ "homepage": "https://github.com/lanonasis/lan-onasis-monorepo/tree/main/packages/oauth-client",
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/index.d.ts",
28
+ "import": "./dist/index.mjs",
29
+ "require": "./dist/index.js"
30
+ }
31
+ },
32
+ "scripts": {
33
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean --external electron --external ws --external eventsource",
34
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch --external electron --external ws --external eventsource",
35
+ "test": "bun test",
36
+ "lint": "eslint src"
37
+ },
38
+ "keywords": [
39
+ "oauth",
40
+ "mcp",
41
+ "lanonasis",
42
+ "supabase",
43
+ "api-key",
44
+ "cli",
45
+ "desktop"
46
+ ],
47
+ "dependencies": {
48
+ "node-fetch": "^3.3.2",
49
+ "open": "^9.1.0",
50
+ "keytar": "^7.9.0"
51
+ },
52
+ "devDependencies": {
53
+ "@eslint/js": "^9.17.0",
54
+ "@types/node": "^20.0.0",
55
+ "eslint": "^9.17.0",
56
+ "globals": "^16.4.0",
57
+ "tsup": "^8.5.0",
58
+ "typescript": "^5.3.3",
59
+ "typescript-eslint": "^8.18.1"
60
+ },
61
+ "peerDependencies": {
62
+ "@supabase/supabase-js": "^2.0.0"
63
+ },
64
+ "publishConfig": {
65
+ "access": "public"
66
+ }
67
+ }