@todoforai/tfa-handoff 0.1.0 → 0.1.1
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/dist/cli.js +24 -2951
- package/package.json +11 -4
package/package.json
CHANGED
|
@@ -1,21 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@todoforai/tfa-handoff",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Lightweight TODO for AI handoff — compacts a conversation into a handoff document as a hidden TODO and prints the result to stdout (pipe filter).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"tfa-handoff": "./dist/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"build": "bun build src/cli.ts --outdir dist --target
|
|
10
|
+
"build": "bun build src/cli.ts --outdir dist --target bun --format esm && sed -i '1s|#!/usr/bin/env node|#!/usr/bin/env bun|' dist/cli.js",
|
|
11
11
|
"dev": "bun run src/cli.ts"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@todoforai/tfa-subagent": "^0.1.9",
|
|
15
15
|
"@types/node": "^20.11.0"
|
|
16
16
|
},
|
|
17
|
-
"keywords": [
|
|
17
|
+
"keywords": [
|
|
18
|
+
"cli",
|
|
19
|
+
"ai",
|
|
20
|
+
"handoff",
|
|
21
|
+
"todoforai"
|
|
22
|
+
],
|
|
18
23
|
"author": "TODO for AI",
|
|
19
24
|
"license": "MIT",
|
|
20
|
-
"files": [
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
]
|
|
21
28
|
}
|