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.
- package/README.md +8 -2
- package/package.json +16 -3
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://www.npmjs.com/package/opencode-qwen-oauth)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
[](https://github.com/dreygur/opencode-qwen-oauth/actions)
|
|
7
|
-
[](CONTRIBUTING.md)
|
|
8
8
|
[](https://www.typescriptlang.org/)
|
|
9
9
|
[](https://opencode.ai)
|
|
10
10
|
[](https://qwen.ai)
|
|
@@ -325,7 +325,13 @@ MIT
|
|
|
325
325
|
|
|
326
326
|
## Contributing
|
|
327
327
|
|
|
328
|
-
Contributions welcome!
|
|
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.
|
|
4
|
-
"description": "
|
|
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"
|