@deepagents-cli/darwin-arm64 0.0.12
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 +36 -0
- package/bin/deepagents +0 -0
- package/package.json +27 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @deepagents-cli/darwin-arm64
|
|
2
|
+
|
|
3
|
+
This package contains the DeepAgents CLI binary for darwin-arm64.
|
|
4
|
+
|
|
5
|
+
## Important
|
|
6
|
+
|
|
7
|
+
**This package is not meant to be installed directly.**
|
|
8
|
+
|
|
9
|
+
Install `deepagents-cli` instead:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g deepagents-cli
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
The main package will automatically install the correct platform-specific binary.
|
|
16
|
+
|
|
17
|
+
## Platform
|
|
18
|
+
|
|
19
|
+
| Property | Value |
|
|
20
|
+
|----------|-------|
|
|
21
|
+
| OS | darwin |
|
|
22
|
+
| CPU | arm64 |
|
|
23
|
+
| Binary | `bin/deepagents` |
|
|
24
|
+
| Runner | macos-14 |
|
|
25
|
+
|
|
26
|
+
## Binary Location
|
|
27
|
+
|
|
28
|
+
After installation, the binary is located at:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
node_modules/@deepagents-cli/darwin-arm64/bin/deepagents
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
MIT - see [LICENSE](https://github.com/langchain-ai/deepagentsjs/blob/main/LICENSE)
|
package/bin/deepagents
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deepagents-cli/darwin-arm64",
|
|
3
|
+
"version": "0.0.12",
|
|
4
|
+
"description": "DeepAgents CLI binary for darwin-arm64",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/langchain-ai/deepagentsjs.git",
|
|
9
|
+
"directory": "libs/cli/platforms/darwin-arm64"
|
|
10
|
+
},
|
|
11
|
+
"os": [
|
|
12
|
+
"darwin"
|
|
13
|
+
],
|
|
14
|
+
"cpu": [
|
|
15
|
+
"arm64"
|
|
16
|
+
],
|
|
17
|
+
"main": "bin/deepagents",
|
|
18
|
+
"files": [
|
|
19
|
+
"bin/"
|
|
20
|
+
],
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=18"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
}
|
|
27
|
+
}
|