-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.77 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
{
"name": "claude-code-token-optimizer",
"displayName": "Token Usage Tracker (Claude Code & Codex)",
"description": "Track Claude Code and Codex token usage per model and per prompt for the current folder.",
"version": "0.2.2",
"publisher": "local",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Dhruvy0804/Claude-Code-Token-Calculator.git"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "claudeTokenOptimizer",
"title": "Token Usage Tracker",
"icon": "media/icon.svg"
}
]
},
"views": {
"claudeTokenOptimizer": [
{
"type": "webview",
"id": "claudeTokenOptimizer.dashboard",
"name": "Token Usage"
}
]
},
"commands": [
{
"command": "claudeTokenOptimizer.refresh",
"title": "Token Usage Tracker: Refresh"
},
{
"command": "claudeTokenOptimizer.toggleSource",
"title": "Token Usage Tracker: Toggle Claude Code / Codex"
}
],
"configuration": {
"title": "Claude Code Token Optimizer",
"properties": {
"claudeTokenOptimizer.projectsPath": {
"type": "string",
"default": "",
"description": "Override the path to ~/.claude/projects. Leave empty to auto-detect."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"typescript": "^5.4.0"
}
}