@t3x-dev/local 0.3.1 → 0.4.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 +19 -3
- package/package.json +1 -1
- package/runtime-manifest.json +16 -16
package/README.md
CHANGED
|
@@ -2,12 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
Minimal local entry package for T3X.
|
|
4
4
|
|
|
5
|
+
## What
|
|
6
|
+
|
|
7
|
+
`@t3x-dev/local` is the alpha entry package for running T3X locally from npm.
|
|
8
|
+
It exposes `t3x-local`, plus convenience forwards for `t3x` and `t3x-mcp`.
|
|
9
|
+
|
|
10
|
+
## Why
|
|
11
|
+
|
|
12
|
+
The package gives alpha users one install path for the self-hostable product
|
|
13
|
+
without making every workspace package part of the public release surface.
|
|
14
|
+
|
|
5
15
|
## Release status
|
|
6
16
|
|
|
7
|
-
`@t3x-dev/local@0.3.
|
|
8
|
-
|
|
17
|
+
`@t3x-dev/local@0.3.1` is part of the restricted T3X alpha release surface.
|
|
18
|
+
Package visibility may be limited to accounts with alpha access.
|
|
9
19
|
|
|
10
|
-
|
|
20
|
+
## Install
|
|
11
21
|
|
|
12
22
|
```bash
|
|
13
23
|
npx -p @t3x-dev/local t3x-local start
|
|
@@ -24,3 +34,9 @@ On package install, `postinstall` downloads the platform runtime asset from
|
|
|
24
34
|
|
|
25
35
|
For private GitHub releases, set `T3X_LOCAL_GITHUB_TOKEN`, `GH_TOKEN`, or
|
|
26
36
|
`GITHUB_TOKEN` to a token with access to the runtime release.
|
|
37
|
+
|
|
38
|
+
## Sample
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
npx -p @t3x-dev/local t3x-local start
|
|
42
|
+
```
|
package/package.json
CHANGED
package/runtime-manifest.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifestVersion": 1,
|
|
3
|
-
"packageVersion": "0.
|
|
4
|
-
"fixedVersion": "0.
|
|
5
|
-
"generatedAt": "2026-06-
|
|
3
|
+
"packageVersion": "0.4.0",
|
|
4
|
+
"fixedVersion": "0.4.0",
|
|
5
|
+
"generatedAt": "2026-06-05T09:38:37.053Z",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@t3x-dev/yops": "0.
|
|
8
|
-
"@t3x-dev/yschema": "0.
|
|
9
|
-
"@t3x-dev/core": "0.
|
|
10
|
-
"@t3x-dev/storage": "0.
|
|
11
|
-
"@t3x-dev/api": "0.
|
|
12
|
-
"@t3x-dev/api-client": "0.
|
|
13
|
-
"@t3x-dev/cli": "0.
|
|
14
|
-
"@t3x-dev/mcp": "0.
|
|
15
|
-
"@t3x-dev/local": "0.
|
|
7
|
+
"@t3x-dev/yops": "0.4.0",
|
|
8
|
+
"@t3x-dev/yschema": "0.4.0",
|
|
9
|
+
"@t3x-dev/core": "0.4.0",
|
|
10
|
+
"@t3x-dev/storage": "0.4.0",
|
|
11
|
+
"@t3x-dev/api": "0.4.0",
|
|
12
|
+
"@t3x-dev/api-client": "0.4.0",
|
|
13
|
+
"@t3x-dev/cli": "0.4.0",
|
|
14
|
+
"@t3x-dev/mcp": "0.4.0",
|
|
15
|
+
"@t3x-dev/local": "0.4.0",
|
|
16
16
|
"web": "0.1.0"
|
|
17
17
|
},
|
|
18
18
|
"platforms": {
|
|
19
19
|
"darwin-arm64": {
|
|
20
|
-
"fileName": "t3x-local-runtime-0.
|
|
21
|
-
"url": "https://github.com/t3x-dev/t3x-core/releases/download/t3x-local-v0.
|
|
22
|
-
"sha256": "
|
|
23
|
-
"size":
|
|
20
|
+
"fileName": "t3x-local-runtime-0.4.0-darwin-arm64.tar.gz",
|
|
21
|
+
"url": "https://github.com/t3x-dev/t3x-core/releases/download/t3x-local-v0.4.0/t3x-local-runtime-0.4.0-darwin-arm64.tar.gz",
|
|
22
|
+
"sha256": "61e094d3d49cb9992cad993920caba9e3e79e8d97dda93af4118c9245961204d",
|
|
23
|
+
"size": 21882464
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|