sheepit-ai 0.1.0 → 0.2.0
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 +15 -27
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,41 +1,29 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
# sheepit-ai
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
_Unscoped installer alias for the Sheepit CLI._
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
[](https://www.npmjs.com/package/sheepit-ai)
|
|
8
|
+
[](./LICENSE)
|
|
8
9
|
|
|
9
|
-
|
|
10
|
-
npm install -g sheepit-ai
|
|
11
|
-
# or
|
|
12
|
-
pnpm add -g sheepit-ai
|
|
13
|
-
# or
|
|
14
|
-
yarn global add sheepit-ai
|
|
15
|
-
```
|
|
10
|
+
</div>
|
|
16
11
|
|
|
17
|
-
|
|
12
|
+
This package exists so `npm install -g sheepit-ai` works without the scope. It depends on [`@sheepit-ai/cli`](https://www.npmjs.com/package/@sheepit-ai/cli) and re-exposes its `sheepit` binary.
|
|
18
13
|
|
|
19
|
-
```
|
|
14
|
+
```bash
|
|
15
|
+
npm install -g sheepit-ai
|
|
20
16
|
sheepit --help
|
|
21
17
|
```
|
|
22
18
|
|
|
23
|
-
|
|
19
|
+
To depend on the CLI directly, install the scoped package:
|
|
24
20
|
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
# or
|
|
28
|
-
pnpm dlx sheepit-ai --help
|
|
21
|
+
```bash
|
|
22
|
+
npm install -D @sheepit-ai/cli
|
|
29
23
|
```
|
|
30
24
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
- `bin.js` — a tiny stub that spawns the real CLI entry from `@sheepit-ai/cli`.
|
|
34
|
-
|
|
35
|
-
That's it. The actual CLI implementation lives in [`@sheepit-ai/cli`](https://www.npmjs.com/package/@sheepit-ai/cli). Source: [`packages/cli/`](https://github.com/goatech-ai/GoaTech/tree/main/packages/cli).
|
|
36
|
-
|
|
37
|
-
## Why a shim package?
|
|
25
|
+
See [`@sheepit-ai/cli`](https://www.npmjs.com/package/@sheepit-ai/cli) for full documentation.
|
|
38
26
|
|
|
39
|
-
|
|
27
|
+
## License
|
|
40
28
|
|
|
41
|
-
|
|
29
|
+
MIT. Copyright (c) 2026 GoaTech AI LLC.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sheepit-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Installs the Sheepit CLI. Re-exports the `sheepit` binary from @sheepit-ai/cli so `npm install -g sheepit-ai` works.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoaTech AI LLC",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"LICENSE"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@sheepit-ai/cli": "0.
|
|
37
|
+
"@sheepit-ai/cli": "0.2.0"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|