@moonmath-ai/zro 0.1.0 → 0.1.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 +0 -8
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -77,11 +77,3 @@ Model selection:
|
|
|
77
77
|
- Temporary launch files are written with `0600` permissions.
|
|
78
78
|
- Temporary launch files are removed after the launched process exits.
|
|
79
79
|
- API keys are never printed unmasked. `--print` redacts secret environment values.
|
|
80
|
-
|
|
81
|
-
## Development
|
|
82
|
-
|
|
83
|
-
```bash
|
|
84
|
-
npm install
|
|
85
|
-
npm test
|
|
86
|
-
npm run build
|
|
87
|
-
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonmath-ai/zro",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Launch coding tools with the Zro OpenAI-compatible endpoint.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
"dist",
|
|
11
11
|
"README.md"
|
|
12
12
|
],
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
13
16
|
"os": [
|
|
14
17
|
"!win32"
|
|
15
18
|
],
|
|
@@ -39,5 +42,5 @@
|
|
|
39
42
|
"openclaw",
|
|
40
43
|
"opencode"
|
|
41
44
|
],
|
|
42
|
-
"license": "
|
|
45
|
+
"license": "UNLICENSED"
|
|
43
46
|
}
|