@elsium-ai/cli 0.1.6

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.
@@ -0,0 +1,2 @@
1
+ export declare function costCommand(args: string[]): Promise<void>;
2
+ //# sourceMappingURL=cost.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cost.d.ts","sourceRoot":"","sources":["../../src/commands/cost.ts"],"names":[],"mappings":"AAeA,wBAAsB,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,iBAoD/C"}
@@ -0,0 +1,2 @@
1
+ export declare function devCommand(args: string[]): Promise<void>;
2
+ //# sourceMappingURL=dev.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dev.d.ts","sourceRoot":"","sources":["../../src/commands/dev.ts"],"names":[],"mappings":"AAIA,wBAAsB,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,iBAqC9C"}
@@ -0,0 +1,2 @@
1
+ export declare function evalCommand(args: string[]): Promise<void>;
2
+ //# sourceMappingURL=eval.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"eval.d.ts","sourceRoot":"","sources":["../../src/commands/eval.ts"],"names":[],"mappings":"AAGA,wBAAsB,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,iBAsE/C"}
@@ -0,0 +1,2 @@
1
+ export declare function initCommand(args: string[]): Promise<void>;
2
+ //# sourceMappingURL=init.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"AAGA,wBAAsB,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,iBAgE/C"}
@@ -0,0 +1,2 @@
1
+ export declare function promptCommand(args: string[]): Promise<void>;
2
+ //# sourceMappingURL=prompt.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"prompt.d.ts","sourceRoot":"","sources":["../../src/commands/prompt.ts"],"names":[],"mappings":"AA8IA,wBAAsB,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,iBAgDjD"}
@@ -0,0 +1,2 @@
1
+ export declare function traceCommand(args: string[]): Promise<void>;
2
+ //# sourceMappingURL=trace.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trace.d.ts","sourceRoot":"","sources":["../../src/commands/trace.ts"],"names":[],"mappings":"AA+GA,wBAAsB,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,iBAehD"}
@@ -0,0 +1,2 @@
1
+ export declare function xrayCommand(args: string[]): Promise<void>;
2
+ //# sourceMappingURL=xray.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"xray.d.ts","sourceRoot":"","sources":["../../src/commands/xray.ts"],"names":[],"mappings":"AA0BA,wBAAsB,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,iBA0E/C"}
@@ -0,0 +1,6 @@
1
+ export { initCommand } from './commands/init';
2
+ export { devCommand } from './commands/dev';
3
+ export { evalCommand } from './commands/eval';
4
+ export { costCommand } from './commands/cost';
5
+ export { traceCommand } from './commands/trace';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAC7C,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAC3C,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAC7C,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAA"}
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@elsium-ai/cli",
3
+ "version": "0.1.6",
4
+ "description": "CLI tool for ElsiumAI projects",
5
+ "license": "MIT",
6
+ "author": "Eric Utrera <ebutrera9103@gmail.com>",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/elsium-ai/elsium-ai",
10
+ "directory": "packages/cli"
11
+ },
12
+ "type": "module",
13
+ "bin": {
14
+ "elsium": "./dist/cli.js"
15
+ },
16
+ "main": "./dist/index.js",
17
+ "types": "./dist/index.d.ts",
18
+ "files": [
19
+ "dist",
20
+ "templates"
21
+ ],
22
+ "scripts": {
23
+ "build": "bun build ./src/cli.ts --outdir ./dist --target bun && bun x tsc -p tsconfig.build.json --emitDeclarationOnly",
24
+ "dev": "bun --watch src/cli.ts"
25
+ },
26
+ "dependencies": {
27
+ "@elsium-ai/core": "workspace:*",
28
+ "@elsium-ai/observe": "workspace:*"
29
+ },
30
+ "devDependencies": {
31
+ "bun-types": "^1.3.0",
32
+ "typescript": "^5.7.0"
33
+ }
34
+ }