-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1020 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1020 Bytes
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
{
"name": "task-cost-estimator",
"version": "0.1.0",
"description": "AI-powered task cost and time estimator for coding agents",
"type": "module",
"homepage": "https://github.com/359392475-blue-sky/task-cost-estimator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/359392475-blue-sky/task-cost-estimator.git"
},
"bugs": {
"url": "https://github.com/359392475-blue-sky/task-cost-estimator/issues"
},
"bin": {
"tce": "./bin/tce.js"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"scripts": {
"test": "node --test src/**/*.test.js"
},
"keywords": [
"ai",
"cost-estimator",
"token",
"claude",
"openai",
"vibe-coding"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/credential-provider-node": "^3.972.30",
"@smithy/signature-v4": "^5.3.13",
"undici": "^8.0.2"
}
}