-
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) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.46 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": "ai-climate-impact",
"displayName": "AI Climate Impact",
"description": "Estimates and displays the CO₂ and water consumption impact of your AI prompts in the status bar. Works with Cursor hooks to track energy consumption per model.",
"version": "0.4.0",
"publisher": "kellyp",
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": ["Other"],
"keywords": ["ai", "climate", "carbon", "co2", "sustainability", "cursor", "hooks", "water", "consumption", "water consumption", "water footprint", "water usage"],
"activationEvents": ["onStartupFinished"],
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "AI Climate Impact",
"properties": {
"aiClimate.heatMapGreenMax": {
"type": "number",
"default": null,
"description": "Fixed gCO2 upper bound for green (low). If set with heatMapYellowMax, overrides percentile-based thresholds."
},
"aiClimate.heatMapYellowMax": {
"type": "number",
"default": null,
"description": "Fixed gCO2 upper bound for yellow (medium). Red = above this. Used only if heatMapGreenMax is also set."
},
"aiClimate.resetStatsOnNewMonth": {
"type": "boolean",
"default": false,
"description": "When enabled, cumulative status-bar totals (CO₂, water, tokens, request count) reset automatically at the start of each calendar month. Per-day impact logs are not cleared."
},
"aiClimate.heatMapHistoryMonths": {
"type": "number",
"default": 12,
"minimum": 1,
"maximum": 36,
"description": "How many past months you can step through in the heat map (including the current month). Older months are not shown."
}
}
},
"commands": [
{
"command": "aiClimate.showDetails",
"title": "AI Climate: Show Climate Impact Details"
},
{
"command": "aiClimate.showHeatMap",
"title": "AI Climate: Show CO2 heat map"
},
{
"command": "aiClimate.reset",
"title": "AI Climate: Reset Climate Impact Stats"
},
{
"command": "aiClimate.installHooks",
"title": "AI Climate: Install/Update Climate ImpaHooks"
}
]
},
"scripts": {
"build": "vsce package --allow-missing-repository"
},
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"@vscode/vsce": "^3"
}
}