-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.49 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "cost-katana-cli",
"version": "2.3.1",
"description": "The simplest AI CLI. Chat with any AI model and track costs automatically.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cost-katana": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"dev": "tsc -w",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts'",
"prepublishOnly": "npm run build",
"prepare": "husky",
"ci:test": "npm test",
"ci:lint": "npm run lint",
"ci:format": "npx prettier --check 'src/**/*.ts'",
"ci:build": "npm run build",
"ci:check": "npm pack --dry-run",
"ci:security": "npm audit --audit-level=moderate",
"release:patch": "git diff --cached --quiet || git commit -m 'chore: prepare for release' || true; git diff --quiet || (echo 'Error: Unstaged changes detected. Please commit or stash changes first.' && exit 1); npm version patch && git push origin master --follow-tags",
"release:minor": "git diff --cached --quiet || git commit -m 'chore: prepare for release' || true; git diff --quiet || (echo 'Error: Unstaged changes detected. Please commit or stash changes first.' && exit 1); npm version minor && git push origin master --follow-tags",
"release:major": "git diff --cached --quiet || git commit -m 'chore: prepare for release' || true; git diff --quiet || (echo 'Error: Unstaged changes detected. Please commit or stash changes first.' && exit 1); npm version major && git push origin master --follow-tags"
},
"keywords": [
"ai",
"cost-tracking",
"cli",
"command-line",
"ai-optimization",
"cost-analysis",
"ai-gateway",
"typescript",
"openai",
"anthropic",
"aws-bedrock",
"google-ai",
"cohere",
"mistral",
"deepseek",
"groq",
"xai",
"cost-katana",
"ai-cost-optimizer",
"prompt-optimization",
"cost-management",
"ai-pricing"
],
"author": "Abdul Sagheer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Hypothesize-Tech/costkatana-cli.git"
},
"bugs": {
"url": "https://github.com/Hypothesize-Tech/costkatana-cli/issues"
},
"homepage": "https://github.com/Hypothesize-Tech/costkatana-cli#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"dependencies": {
"axios": "^1.6.0",
"boxen": "^7.1.1",
"chalk": "^5.5.0",
"commander": "^11.1.0",
"conf": "^12.0.0",
"cost-katana": "^2.2.0",
"csv-parser": "^3.2.0",
"csv-writer": "^1.6.0",
"dotenv": "^16.3.1",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.12",
"ora": "^7.0.1",
"table": "^6.8.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.6",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}