arial-cli 0.1.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 +3 -0
  2. package/dist/cli.js +30954 -0
  3. package/package.json +41 -0
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "arial-cli",
3
+ "version": "0.1.0",
4
+ "description": "A CLI utility to interact with LLMs",
5
+ "type": "module",
6
+ "bin": {
7
+ "arial": "./dist/cli.js",
8
+ "arial-cli": "./dist/cli.js"
9
+ },
10
+ "author": "Shane Neubauer",
11
+ "license": "MIT",
12
+ "engines": {
13
+ "node": ">=18.0.0",
14
+ "bun": ">=1.0.0"
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md"
19
+ ],
20
+ "devDependencies": {
21
+ "@types/bun": "latest",
22
+ "@types/node": "^24.5.2"
23
+ },
24
+ "peerDependencies": {
25
+ "typescript": "^5.0.0"
26
+ },
27
+ "dependencies": {
28
+ "@ai-sdk/openai": "^2.0.32",
29
+ "ai": "^5.0.48",
30
+ "chalk": "^5.6.2",
31
+ "dotenv": "^17.2.2",
32
+ "uuid": "^13.0.0",
33
+ "zod": "^4.1.11"
34
+ },
35
+ "scripts": {
36
+ "build": "bun build src/cli.ts --outdir dist --target node",
37
+ "dev": "bun --watch src/cli.ts",
38
+ "start": "bun src/cli.ts",
39
+ "test": "bun test"
40
+ }
41
+ }