-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.88 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.88 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
{
"name": "toastykey",
"version": "1.0.0",
"description": "Track. Control. Understand. The API cost layer for AI-native builders.",
"main": "src/index.js",
"bin": {
"toastykey": "./bin/toastykey.js"
},
"scripts": {
"start": "node src/index.js",
"mcp": "node src/index.js mcp",
"test": "jest",
"dashboard:dev": "cd src/dashboard && npm run dev",
"dashboard:build": "cd src/dashboard && npm run build",
"dashboard:install": "cd src/dashboard && npm install",
"dev": "concurrently \"npm start\" \"npm run dashboard:dev\"",
"build": "npm run dashboard:build",
"start:prod": "NODE_ENV=production npm start",
"postinstall": "chmod +x bin/toastykey.js || true",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"mcp",
"api-cost",
"ai-tools",
"claude-code",
"budget",
"proxy",
"api-tracking",
"cost-monitoring",
"openai",
"anthropic"
],
"author": "premmuditc (https://linkedin.com/in/bakatoast)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Knitefyre/toastykey.git"
},
"homepage": "https://github.com/Knitefyre/toastykey#readme",
"bugs": {
"url": "https://github.com/Knitefyre/toastykey/issues"
},
"files": [
"bin/",
"src/",
"pricing/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.2",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"handlebars": "^4.7.9",
"ignore": "^5.3.0",
"inquirer": "^9.2.0",
"node-cron": "^4.2.1",
"open": "^8.4.0",
"ora": "^5.4.1",
"socket.io": "^4.8.3",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/node": "^20.10.6",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"supertest": "^7.2.2"
}
}