@andocorp/cli 0.1.2 → 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.
- package/README.md +143 -32
- package/dist/index.js +32009 -11635
- package/package.json +19 -14
package/package.json
CHANGED
|
@@ -1,22 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@andocorp/cli",
|
|
3
|
-
"version": "0.
|
|
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
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
|
|
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
|
+
}
|