@sqfcy/liteagent 0.1.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +126 -0
  3. package/dist/main.js +55562 -0
  4. package/package.json +39 -0
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@sqfcy/liteagent",
3
+ "version": "0.1.2",
4
+ "description": "A lightweight, general-purpose AI agent harness",
5
+ "main": "dist/main.js",
6
+ "type": "module",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "bin": {
11
+ "liteagent": "dist/main.js",
12
+ "la": "dist/main.js"
13
+ },
14
+ "scripts": {
15
+ "start": "bun run src/main.tsx",
16
+ "dev": "bun run --watch src/main.tsx --dev",
17
+ "build:bin": "bun build src/main.tsx --compile --outfile liteagent && cp liteagent la",
18
+ "build:npm": "bun build src/main.tsx --target=node --outdir=dist --format=esm --sourcemap=external",
19
+ "global:link": "bun link",
20
+ "global:unlink": "bun unlink"
21
+ },
22
+ "dependencies": {
23
+ "dotenv": "^16.4.5",
24
+ "ink": "^5.0.0",
25
+ "ink-select-input": "^6.2.0",
26
+ "ink-text-input": "^6.0.0",
27
+ "marked": "^14.1.2",
28
+ "react": "^18.2.0",
29
+ "react-devtools-core": "^7.0.1",
30
+ "yaml": "^2.8.3",
31
+ "zod": "^3.23.8"
32
+ },
33
+ "devDependencies": {
34
+ "@types/node": "^20.0.0",
35
+ "@types/react": "^18.2.79",
36
+ "bun-types": "^1.3.11",
37
+ "typescript": "^5.4.5"
38
+ }
39
+ }