@andocorp/cli 0.1.3 → 0.2.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 +143 -32
  2. package/dist/index.js +32169 -9593
  3. package/package.json +19 -14
package/package.json CHANGED
@@ -1,22 +1,17 @@
1
1
  {
2
2
  "name": "@andocorp/cli",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "description": "Ando CLI - A terminal client for humans and agents",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "ando": "./dist/index.js"
8
8
  },
9
- "scripts": {
10
- "build": "bun build ./src/index.ts --outdir ./dist --target node --format esm && (echo '#!/usr/bin/env node'; tail -n +2 ./dist/index.js) > ./dist/index.tmp && mv ./dist/index.tmp ./dist/index.js && chmod +x ./dist/index.js",
11
- "compile": "bun build --compile ./src/index.ts --outfile ./dist/ando && chmod +x ./dist/ando",
12
- "compile:all": "node scripts/build-all-platforms.js",
13
- "dev": "bun run ./src/index.ts",
14
- "lint": "pnpm -w exec eslint apps/cli --no-warn-ignored",
15
- "prepublishOnly": "npm run build",
16
- "test": "vitest run",
17
- "typecheck": "tsc --noEmit"
18
- },
19
- "keywords": ["cli", "terminal", "chat", "collaboration"],
9
+ "keywords": [
10
+ "cli",
11
+ "terminal",
12
+ "chat",
13
+ "collaboration"
14
+ ],
20
15
  "author": "Asari Inc.",
21
16
  "license": "MIT",
22
17
  "files": [
@@ -27,11 +22,21 @@
27
22
  },
28
23
  "dependencies": {
29
24
  "convex": "^1.34.1",
30
- "emojibase-data": "^16.0.3"
25
+ "emojibase-data": "^16.0.3",
26
+ "@ando/shared": "0.1.0"
31
27
  },
32
28
  "devDependencies": {
33
29
  "@types/node": "^20.0.0",
34
30
  "typescript": "^5.0.0",
35
31
  "vitest": "^4.1.4"
32
+ },
33
+ "scripts": {
34
+ "build": "bun build ./src/index.ts --outdir ./dist --target node --format esm && (echo '#!/usr/bin/env node'; tail -n +2 ./dist/index.js) > ./dist/index.tmp && mv ./dist/index.tmp ./dist/index.js && chmod +x ./dist/index.js",
35
+ "compile": "bun build --compile ./src/index.ts --outfile ./dist/ando && chmod +x ./dist/ando",
36
+ "compile:all": "node scripts/build-all-platforms.js",
37
+ "dev": "bun run ./src/index.ts",
38
+ "lint": "pnpm -w exec node ./scripts/run-eslint.mjs apps/cli",
39
+ "test": "vitest run",
40
+ "typecheck": "tsc --noEmit"
36
41
  }
37
- }
42
+ }