aihabitat-cli 2026.625.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.
Files changed (3) hide show
  1. package/README.md +125 -0
  2. package/dist/cli.js +9342 -0
  3. package/package.json +33 -0
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "aihabitat-cli",
3
+ "version": "2026.625.0",
4
+ "description": "Habitat command-line client for Linux — log in, run agents, and manage your wallet from the terminal.",
5
+ "private": false,
6
+ "type": "module",
7
+ "bin": {
8
+ "habitat": "./dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md"
13
+ ],
14
+ "engines": {
15
+ "node": ">=22.12.0"
16
+ },
17
+ "scripts": {
18
+ "build": "tsup",
19
+ "prepublishOnly": "tsup",
20
+ "typecheck": "node node_modules/typescript/bin/tsc -p tsconfig.json --noEmit",
21
+ "test": "node --experimental-strip-types --test \"src/**/*.test.ts\"",
22
+ "dev": "node --experimental-strip-types src/main.ts"
23
+ },
24
+ "dependencies": {
25
+ "@iarna/toml": "^2.2.5"
26
+ },
27
+ "devDependencies": {
28
+ "@habitat/shared": "workspace:*",
29
+ "@types/node": "^22.10.0",
30
+ "tsup": "^8.2.4",
31
+ "typescript": "^5.8.3"
32
+ }
33
+ }