signetai 0.220.0 → 0.221.2
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 +10 -5
- package/native-manifest.json +13 -13
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Signet
|
|
2
2
|
|
|
3
3
|
This npm package is a thin wrapper for the same compiled Signet binary used by
|
|
4
|
-
the
|
|
4
|
+
the native installers and Bun global installs.
|
|
5
5
|
|
|
6
6
|
```bash
|
|
7
7
|
npm install -g signetai
|
|
@@ -22,6 +22,12 @@ Direct curl installs use the same compiled Signet binary:
|
|
|
22
22
|
curl -fsSL https://signetai.sh/install.sh | bash
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
On Windows x64, use the native PowerShell installer:
|
|
26
|
+
|
|
27
|
+
```powershell
|
|
28
|
+
iwr -useb https://signetai.sh/install.ps1 | iex
|
|
29
|
+
```
|
|
30
|
+
|
|
25
31
|
## Requirements
|
|
26
32
|
|
|
27
33
|
- Node.js for the npm wrapper, or Bun for the Bun wrapper
|
|
@@ -31,11 +37,10 @@ curl -fsSL https://signetai.sh/install.sh | bash
|
|
|
31
37
|
The published binary supports Windows, but durable transcript imports use
|
|
32
38
|
descriptor-relative filesystem safeguards available only on Linux and macOS.
|
|
33
39
|
Transcript import mutations and deletion of imported Sources return a structured
|
|
34
|
-
`501` platform error on Windows; other Windows
|
|
40
|
+
`501` platform error on Windows; other Windows features remain supported.
|
|
35
41
|
|
|
36
|
-
Windows
|
|
37
|
-
|
|
38
|
-
ships.
|
|
42
|
+
The Windows PowerShell installer verifies the release manifest, installs the
|
|
43
|
+
native binary and connector assets, and adds Signet to the user PATH.
|
|
39
44
|
|
|
40
45
|
## Documentation
|
|
41
46
|
|
package/native-manifest.json
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.221.2",
|
|
4
4
|
"assets": [
|
|
5
5
|
{
|
|
6
6
|
"name": "signet-darwin-arm64",
|
|
7
7
|
"platform": "darwin-arm64",
|
|
8
|
-
"sha256": "
|
|
8
|
+
"sha256": "6c86d1d44866d328ed1d345c21e2692a25ddf3e45f4017b0701f9ace90edfc6c",
|
|
9
9
|
"size": 204508960
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "signet-darwin-x64",
|
|
13
13
|
"platform": "darwin-x64",
|
|
14
|
-
"sha256": "
|
|
15
|
-
"size":
|
|
14
|
+
"sha256": "fc367fd1de0655720d812c9753b876f71d2369f8681a6ec57c031ea576bd4154",
|
|
15
|
+
"size": 208915008
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"name": "signet-linux-arm64",
|
|
19
19
|
"platform": "linux-arm64",
|
|
20
|
-
"sha256": "
|
|
21
|
-
"size":
|
|
20
|
+
"sha256": "7e6c4d78db48e95151bfd7d7f0118f48774cbc3d1a42a13eb7b3c9f2a01b239f",
|
|
21
|
+
"size": 251510152
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "signet-linux-x64",
|
|
25
25
|
"platform": "linux-x64",
|
|
26
|
-
"sha256": "
|
|
27
|
-
"size":
|
|
26
|
+
"sha256": "1227f797ac307646ee57eef2c9da114c761ca9b146a5ab355626a16d2b6c5e21",
|
|
27
|
+
"size": 254298004
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "signet-win32-x64.exe",
|
|
31
31
|
"platform": "win32-x64",
|
|
32
|
-
"sha256": "
|
|
33
|
-
"size":
|
|
32
|
+
"sha256": "3374ba11e79dfc1b1358c8e7f98a389464b1882ff3e03294f5a79a5a7fbf0965",
|
|
33
|
+
"size": 260752384
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"components": {
|
|
37
37
|
"connectors": {
|
|
38
|
-
"url": "signet-connectors-0.
|
|
39
|
-
"sha256": "
|
|
40
|
-
"size":
|
|
38
|
+
"url": "signet-connectors-0.221.2.tar.gz",
|
|
39
|
+
"sha256": "9f193e55d43b433701b2327090e0939e0596e5310de4f1afee15639e40e58aa1",
|
|
40
|
+
"size": 21844
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "signetai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.221.2",
|
|
4
4
|
"description": "Signet native CLI installer wrapper",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
67
|
"optionalDependencies": {
|
|
68
|
-
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.
|
|
69
|
-
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.
|
|
70
|
-
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.
|
|
71
|
-
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.
|
|
72
|
-
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.
|
|
68
|
+
"signetai-darwin-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.221.2/signetai-darwin-arm64-0.221.2.tgz",
|
|
69
|
+
"signetai-darwin-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.221.2/signetai-darwin-x64-0.221.2.tgz",
|
|
70
|
+
"signetai-linux-arm64": "https://github.com/Signet-AI/signetai/releases/download/v0.221.2/signetai-linux-arm64-0.221.2.tgz",
|
|
71
|
+
"signetai-linux-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.221.2/signetai-linux-x64-0.221.2.tgz",
|
|
72
|
+
"signetai-win32-x64": "https://github.com/Signet-AI/signetai/releases/download/v0.221.2/signetai-win32-x64-0.221.2.tgz"
|
|
73
73
|
}
|
|
74
74
|
}
|