@jamesaphoenix/tx-types 0.5.8 → 0.5.10
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 +7 -0
- package/package.json +1 -7
package/README.md
CHANGED
|
@@ -5,7 +5,14 @@
|
|
|
5
5
|
Memory, tasks, and orchestration. You own the loop.
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
+
# Standalone binary (recommended — no runtime needed)
|
|
9
|
+
curl -fsSL https://raw.githubusercontent.com/jamesaphoenix/tx/main/install.sh | sh
|
|
10
|
+
|
|
11
|
+
# Or via npm (requires bun)
|
|
8
12
|
npm install -g @jamesaphoenix/tx-cli
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
```bash
|
|
9
16
|
tx init
|
|
10
17
|
```
|
|
11
18
|
|
package/package.json
CHANGED
|
@@ -1,38 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jamesaphoenix/tx-types",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.10",
|
|
4
4
|
"description": "Shared TypeScript types for tx - Effect Schema definitions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"bun": "./src/index.ts",
|
|
11
10
|
"types": "./dist/index.d.ts",
|
|
12
11
|
"import": "./dist/index.js"
|
|
13
12
|
},
|
|
14
13
|
"./task": {
|
|
15
|
-
"bun": "./src/task.ts",
|
|
16
14
|
"types": "./dist/task.d.ts",
|
|
17
15
|
"import": "./dist/task.js"
|
|
18
16
|
},
|
|
19
17
|
"./learning": {
|
|
20
|
-
"bun": "./src/learning.ts",
|
|
21
18
|
"types": "./dist/learning.d.ts",
|
|
22
19
|
"import": "./dist/learning.js"
|
|
23
20
|
},
|
|
24
21
|
"./file-learning": {
|
|
25
|
-
"bun": "./src/file-learning.ts",
|
|
26
22
|
"types": "./dist/file-learning.d.ts",
|
|
27
23
|
"import": "./dist/file-learning.js"
|
|
28
24
|
},
|
|
29
25
|
"./attempt": {
|
|
30
|
-
"bun": "./src/attempt.ts",
|
|
31
26
|
"types": "./dist/attempt.d.ts",
|
|
32
27
|
"import": "./dist/attempt.js"
|
|
33
28
|
},
|
|
34
29
|
"./run": {
|
|
35
|
-
"bun": "./src/run.ts",
|
|
36
30
|
"types": "./dist/run.d.ts",
|
|
37
31
|
"import": "./dist/run.js"
|
|
38
32
|
}
|