opencode-qwen-oauth 2.4.0 → 2.4.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.
Files changed (2) hide show
  1. package/README.md +8 -2
  2. package/package.json +16 -3
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![npm downloads](https://img.shields.io/npm/dm/opencode-qwen-oauth.svg?style=flat-square)](https://www.npmjs.com/package/opencode-qwen-oauth)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](LICENSE)
6
6
  [![CI Status](https://img.shields.io/github/actions/workflow/status/dreygur/opencode-qwen-oauth/ci.yml?branch=main&style=flat-square&label=CI)](https://github.com/dreygur/opencode-qwen-oauth/actions)
7
- [![Security Audit](https://img.shields.io/badge/security-audited-success?style=flat-square)](AUDIT.md)
7
+ [![Contributing](https://img.shields.io/badge/contributions-welcome-brightgreen?style=flat-square)](CONTRIBUTING.md)
8
8
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue?style=flat-square&logo=typescript)](https://www.typescriptlang.org/)
9
9
  [![OpenCode](https://img.shields.io/badge/OpenCode-Plugin-purple?style=flat-square)](https://opencode.ai)
10
10
  [![Qwen](https://img.shields.io/badge/Qwen.ai-OAuth-red?style=flat-square)](https://qwen.ai)
@@ -325,7 +325,13 @@ MIT
325
325
 
326
326
  ## Contributing
327
327
 
328
- Contributions welcome! Please open an issue or submit a PR.
328
+ Contributions are welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
329
+
330
+ - 🐛 Report bugs via [Issues](https://github.com/dreygur/opencode-qwen-oauth/issues)
331
+ - 💡 Suggest features via [Discussions](https://github.com/dreygur/opencode-qwen-oauth/discussions)
332
+ - 🔧 Submit PRs with tests and documentation
333
+
334
+ If you find this plugin helpful, please ⭐ star the repo to support the project!
329
335
 
330
336
  ## Related
331
337
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "opencode-qwen-oauth",
3
- "version": "2.4.0",
4
- "description": "Qwen OAuth authentication plugin for OpenCode - authenticate with Qwen.ai using OAuth device flow",
3
+ "version": "2.4.1",
4
+ "description": "OAuth 2.0 Device Flow plugin for OpenCode - authenticate with Qwen.ai (PKCE secured, auto token refresh)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -27,13 +27,26 @@
27
27
  "opencode",
28
28
  "opencode-plugin",
29
29
  "qwen",
30
+ "qwen-ai",
30
31
  "oauth",
32
+ "oauth2",
33
+ "device-flow",
34
+ "pkce",
31
35
  "authentication",
36
+ "auth",
32
37
  "ai",
33
- "llm"
38
+ "llm",
39
+ "typescript",
40
+ "plugin",
41
+ "ai-auth",
42
+ "headless-auth"
34
43
  ],
35
44
  "author": "Rakibul Yeasin <ryeasin03@gmail.com>",
36
45
  "license": "MIT",
46
+ "funding": {
47
+ "type": "github",
48
+ "url": "https://github.com/sponsors/dreygur"
49
+ },
37
50
  "repository": {
38
51
  "type": "git",
39
52
  "url": "git+https://github.com/dreygur/opencode-qwen-oauth.git"