50c 3.0.1 → 3.0.3
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 +3 -1
- package/bin/50c.js +1 -1
- package/package.json +40 -27
package/README.md
CHANGED
|
@@ -113,7 +113,7 @@ Add to your IDE's MCP config:
|
|
|
113
113
|
"mcpServers": {
|
|
114
114
|
"50c": {
|
|
115
115
|
"command": "npx",
|
|
116
|
-
"args": ["-y", "50c"],
|
|
116
|
+
"args": ["-y", "50c@latest"],
|
|
117
117
|
"env": {
|
|
118
118
|
"FIFTYC_API_KEY": "<YOUR_API_KEY>"
|
|
119
119
|
}
|
|
@@ -122,6 +122,8 @@ Add to your IDE's MCP config:
|
|
|
122
122
|
}
|
|
123
123
|
```
|
|
124
124
|
|
|
125
|
+
> **Note:** Using `50c@latest` ensures you always get the newest version. For stability, pin to a specific version (e.g., `50c@3.0.3`).
|
|
126
|
+
|
|
125
127
|
## Config
|
|
126
128
|
|
|
127
129
|
Config stored in `~/.50c/config.json`:
|
package/bin/50c.js
CHANGED
package/package.json
CHANGED
|
@@ -1,27 +1,40 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "50c",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"description": "50c Hub - One Hub, Many Packs, Infinite Tools. AI developer tools from $0.01-$0.65.",
|
|
5
|
-
"bin": {
|
|
6
|
-
"50c": "./bin/50c.js"
|
|
7
|
-
},
|
|
8
|
-
"scripts": {
|
|
9
|
-
"postinstall": "node -e \"console.log('\\n50c Hub installed. Run: 50c install\\n')\""
|
|
10
|
-
},
|
|
11
|
-
"keywords": [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "50c",
|
|
3
|
+
"version": "3.0.3",
|
|
4
|
+
"description": "50c Hub - One Hub, Many Packs, Infinite Tools. AI developer tools from $0.01-$0.65.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"50c": "./bin/50c.js"
|
|
7
|
+
},
|
|
8
|
+
"scripts": {
|
|
9
|
+
"postinstall": "node -e \"console.log('\\n50c Hub installed. Run: 50c install\\n')\""
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"mcp",
|
|
13
|
+
"ai",
|
|
14
|
+
"llm",
|
|
15
|
+
"cli",
|
|
16
|
+
"agent",
|
|
17
|
+
"50c",
|
|
18
|
+
"hints",
|
|
19
|
+
"genius",
|
|
20
|
+
"beacon",
|
|
21
|
+
"developer-tools",
|
|
22
|
+
"context",
|
|
23
|
+
"compression"
|
|
24
|
+
],
|
|
25
|
+
"author": "genxis",
|
|
26
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
27
|
+
"homepage": "https://50c.ai",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/genxis/50c"
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=18.0.0"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"bin/",
|
|
37
|
+
"README.md",
|
|
38
|
+
"LICENSE"
|
|
39
|
+
]
|
|
40
|
+
}
|