claude-master-toolkit 0.1.1

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,96 @@
1
+ {
2
+ "name": "claude-master-toolkit",
3
+ "version": "0.1.1",
4
+ "description": "Token-efficient CLI + metrics dashboard for Claude Code. Measure real cost, cut context bloat, and keep sessions cheap.",
5
+ "type": "module",
6
+ "bin": {
7
+ "ctk": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "scripts": {
15
+ "dev": "concurrently \"vite\" \"tsx watch src/server/index.ts\"",
16
+ "dev:cli": "tsx src/cli/index.ts",
17
+ "build": "rm -rf dist && tsup --config tsup.config.ts && vite build",
18
+ "build:cli": "tsup --config tsup.config.ts",
19
+ "build:server": "tsup --config tsup.config.ts && vite build",
20
+ "start": "node dist/server.js",
21
+ "test": "vitest run",
22
+ "test:watch": "vitest",
23
+ "db:generate": "drizzle-kit generate",
24
+ "db:migrate": "tsx src/server/db/migrate.ts",
25
+ "prepublishOnly": "npm run build",
26
+ "reinstall": "./uninstall.sh && npm install && npm run db:migrate && npm run build && ./install.sh"
27
+ },
28
+ "keywords": [
29
+ "claude",
30
+ "claude-code",
31
+ "anthropic",
32
+ "cli",
33
+ "tokens",
34
+ "cost",
35
+ "dashboard",
36
+ "llm",
37
+ "ai",
38
+ "sqlite",
39
+ "metrics",
40
+ "context-window"
41
+ ],
42
+ "author": "Oliver Calderon <loviver@users.noreply.github.com>",
43
+ "license": "MIT",
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/loviver/claude-master-toolkit.git"
47
+ },
48
+ "bugs": {
49
+ "url": "https://github.com/loviver/claude-master-toolkit/issues"
50
+ },
51
+ "homepage": "https://github.com/loviver/claude-master-toolkit#readme",
52
+ "publishConfig": {
53
+ "access": "public"
54
+ },
55
+ "engines": {
56
+ "node": ">=18.0.0"
57
+ },
58
+ "dependencies": {
59
+ "@fastify/cors": "^10.0.2",
60
+ "@fastify/static": "^8.1.0",
61
+ "@radix-ui/react-dialog": "^1.1.15",
62
+ "@radix-ui/react-navigation-menu": "^1.2.14",
63
+ "@radix-ui/react-progress": "^1.1.8",
64
+ "@radix-ui/react-select": "^2.2.6",
65
+ "@radix-ui/react-tabs": "^1.1.13",
66
+ "@radix-ui/react-tooltip": "^1.2.8",
67
+ "@tanstack/react-query": "^5.99.0",
68
+ "better-sqlite3": "^11.8.1",
69
+ "boxen": "^8.0.1",
70
+ "chalk": "^5.6.2",
71
+ "chokidar": "^4.0.3",
72
+ "commander": "^13.1.0",
73
+ "drizzle-orm": "^0.44.2",
74
+ "fastify": "^5.3.3",
75
+ "open": "^10.1.2",
76
+ "ora": "^9.3.0",
77
+ "react": "^19.1.0",
78
+ "react-dom": "^19.1.0",
79
+ "react-router-dom": "^7.5.3",
80
+ "recharts": "^2.15.3"
81
+ },
82
+ "devDependencies": {
83
+ "@types/better-sqlite3": "^7.6.13",
84
+ "@types/node": "^22.15.3",
85
+ "@types/react": "^19.1.3",
86
+ "@types/react-dom": "^19.1.3",
87
+ "@vitejs/plugin-react": "^4.4.1",
88
+ "concurrently": "^9.1.2",
89
+ "drizzle-kit": "^0.31.1",
90
+ "tsup": "^8.5.1",
91
+ "tsx": "^4.19.4",
92
+ "typescript": "^5.8.3",
93
+ "vite": "^6.3.4",
94
+ "vitest": "^3.1.3"
95
+ }
96
+ }