@iri-ai/cli 1.0.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/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@iri-ai/cli",
3
+ "version": "1.0.0",
4
+ "description": "Enterprise AI token management CLI - Track usage, enforce policies, manage budgets across Claude Code, Cursor, and more.",
5
+ "license": "UNLICENSED",
6
+ "type": "module",
7
+ "main": "./dist/cli.js",
8
+ "bin": {
9
+ "iri": "./dist/cli.js"
10
+ },
11
+ "files": [
12
+ "dist/cli.js",
13
+ "dist/*.node"
14
+ ],
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "homepage": "https://www.iri-ai.com",
19
+ "bugs": {
20
+ "url": "https://www.iri-ai.com/support"
21
+ },
22
+ "scripts": {
23
+ "build": "tsc && bun run build:bundle",
24
+ "build:bundle": "bun build ./dist/cli.js --outdir ./dist --minify --target bun",
25
+ "build:tui": "echo 'TUI bundling skipped - OpenTUI requires Bun runtime'",
26
+ "dev": "bun run --conditions=browser src/cli.ts",
27
+ "tui": "bun run --conditions=browser src/cli.ts tui",
28
+ "start": "bun run --conditions=browser dist/cli.js",
29
+ "prepublishOnly": "bun run build"
30
+ },
31
+ "dependencies": {
32
+ "@napi-rs/canvas": "^0.1.68",
33
+ "@opentui/core": "0.1.60",
34
+ "@opentui/react": "^0.1.60",
35
+ "@opentui/solid": "^0.1.60",
36
+ "@resvg/resvg-js": "^2.6.2",
37
+ "@iri-ai/core": "workspace:*",
38
+ "cli-table3": "^0.6.5",
39
+ "clipboardy": "^5.0.2",
40
+ "commander": "^14.0.2",
41
+ "csv-parse": "^5.6.0",
42
+ "date-fns": "^4.1.0",
43
+ "picocolors": "^1.1.1",
44
+ "react": "^19.2.3",
45
+ "solid-js": "1.9.9",
46
+ "string-width": "^8.1.0"
47
+ },
48
+ "devDependencies": {
49
+ "@types/node": "^20.0.0",
50
+ "@types/react": "^19.2.7",
51
+ "typescript": "^5.0.0"
52
+ },
53
+ "engines": {
54
+ "bun": ">= 1.0"
55
+ },
56
+ "keywords": [
57
+ "iri-ai",
58
+ "ai-usage",
59
+ "token-tracking",
60
+ "claude-code",
61
+ "cursor",
62
+ "enterprise",
63
+ "cli"
64
+ ]
65
+ }