Skip to content

Commit 267ac9c

Browse files
chore: renomear pacote para opencode-qwencode-auth
Nome anterior já estava em uso no npm
1 parent 2e64a4b commit 267ac9c

3 files changed

Lines changed: 18 additions & 18 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 🤖 Qwen Code OAuth Plugin for OpenCode
22

3-
![License](https://img.shields.io/github/license/gustavodiasdev/opencode-qwen-auth)
4-
![GitHub stars](https://img.shields.io/github/stars/gustavodiasdev/opencode-qwen-auth)
3+
![License](https://img.shields.io/github/license/gustavodiasdev/opencode-qwencode-auth)
4+
![GitHub stars](https://img.shields.io/github/stars/gustavodiasdev/opencode-qwencode-auth)
55

66
**Authenticate OpenCode CLI with your qwen.ai account.** This plugin enables you to use Qwen3-Coder models with **2,000 free requests per day** - no API key or credit card required!
77

@@ -30,7 +30,7 @@ Edit `~/.opencode/package.json`:
3030
```json
3131
{
3232
"dependencies": {
33-
"opencode-qwen-auth": "github:gustavodiasdev/opencode-qwen-auth"
33+
"opencode-qwencode-auth": "github:gustavodiasdev/opencode-qwencode-auth"
3434
}
3535
}
3636
```
@@ -39,7 +39,7 @@ Edit `~/.opencode/opencode.jsonc`:
3939

4040
```json
4141
{
42-
"plugin": ["opencode-qwen-auth"]
42+
"plugin": ["opencode-qwencode-auth"]
4343
}
4444
```
4545

@@ -139,8 +139,8 @@ The `qwen-code` provider is added via plugin. In the `opencode auth login` comma
139139

140140
```bash
141141
# Clone the repository
142-
git clone https://github.com/gustavodiasdev/opencode-qwen-auth.git
143-
cd opencode-qwen-auth
142+
git clone https://github.com/gustavodiasdev/opencode-qwencode-auth.git
143+
cd opencode-qwencode-auth
144144

145145
# Install dependencies
146146
bun install
@@ -156,7 +156,7 @@ Edit `~/.opencode/package.json`:
156156
```json
157157
{
158158
"dependencies": {
159-
"opencode-qwen-auth": "file:///absolute/path/to/opencode-qwen-auth"
159+
"opencode-qwencode-auth": "file:///absolute/path/to/opencode-qwencode-auth"
160160
}
161161
}
162162
```

README.pt-BR.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 🤖 Qwen Code OAuth Plugin para OpenCode
22

3-
![License](https://img.shields.io/github/license/gustavodiasdev/opencode-qwen-auth)
4-
![GitHub stars](https://img.shields.io/github/stars/gustavodiasdev/opencode-qwen-auth)
3+
![License](https://img.shields.io/github/license/gustavodiasdev/opencode-qwencode-auth)
4+
![GitHub stars](https://img.shields.io/github/stars/gustavodiasdev/opencode-qwencode-auth)
55

66
**Autentique o OpenCode CLI com sua conta qwen.ai.** Este plugin permite usar modelos Qwen3-Coder com **2.000 requisições gratuitas por dia** - sem API key ou cartão de crédito!
77

@@ -30,7 +30,7 @@ Edite `~/.opencode/package.json`:
3030
```json
3131
{
3232
"dependencies": {
33-
"opencode-qwen-auth": "github:gustavodiasdev/opencode-qwen-auth"
33+
"opencode-qwencode-auth": "github:gustavodiasdev/opencode-qwencode-auth"
3434
}
3535
}
3636
```
@@ -39,7 +39,7 @@ Edite `~/.opencode/opencode.jsonc`:
3939

4040
```json
4141
{
42-
"plugin": ["opencode-qwen-auth"]
42+
"plugin": ["opencode-qwencode-auth"]
4343
}
4444
```
4545

@@ -139,8 +139,8 @@ O provider `qwen-code` é adicionado via plugin. No comando `opencode auth login
139139

140140
```bash
141141
# Clone o repositório
142-
git clone https://github.com/gustavodiasdev/opencode-qwen-auth.git
143-
cd opencode-qwen-auth
142+
git clone https://github.com/gustavodiasdev/opencode-qwencode-auth.git
143+
cd opencode-qwencode-auth
144144

145145
# Instale dependências
146146
bun install
@@ -156,7 +156,7 @@ Edite `~/.opencode/package.json`:
156156
```json
157157
{
158158
"dependencies": {
159-
"opencode-qwen-auth": "file:///caminho/absoluto/para/opencode-qwen-auth"
159+
"opencode-qwencode-auth": "file:///caminho/absoluto/para/opencode-qwencode-auth"
160160
}
161161
}
162162
```

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "opencode-qwen-auth",
2+
"name": "opencode-qwencode-auth",
33
"version": "1.0.0",
44
"description": "Qwen OAuth authentication plugin for OpenCode - Access Qwen3-Coder models with your qwen.ai account",
55
"module": "index.ts",
@@ -24,11 +24,11 @@
2424
"license": "MIT",
2525
"repository": {
2626
"type": "git",
27-
"url": "git+https://github.com/gustavodiasdev/opencode-qwen-auth.git"
27+
"url": "git+https://github.com/gustavodiasdev/opencode-qwencode-auth.git"
2828
},
29-
"homepage": "https://github.com/gustavodiasdev/opencode-qwen-auth#readme",
29+
"homepage": "https://github.com/gustavodiasdev/opencode-qwencode-auth#readme",
3030
"bugs": {
31-
"url": "https://github.com/gustavodiasdev/opencode-qwen-auth/issues"
31+
"url": "https://github.com/gustavodiasdev/opencode-qwencode-auth/issues"
3232
},
3333
"dependencies": {
3434
"open": "^10.1.0"

0 commit comments

Comments
 (0)