-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "context-saver",
"displayName": "Context Saver — cut AI token waste with a smart .cursorignore + repo map",
"description": "Stop Cursor, Claude Code & Copilot from re-reading node_modules, build output and lockfiles. One command writes a smart ignore file and a compact repo map so your agent uses fewer tokens.",
"version": "0.1.0",
"publisher": "devloadout",
"engines": { "vscode": "^1.80.0" },
"categories": ["AI", "Machine Learning", "Other"],
"keywords": ["cursor", "claude", "copilot", "cursorignore", "tokens", "context", "ai", "agent", "ignore", "performance"],
"icon": "icon.png",
"license": "MIT",
"repository": { "type": "git", "url": "https://github.com/devloadout/vscode-context-saver" },
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "contextSaver.generate",
"title": "Context Saver: Generate ignore file + repo map"
}
]
}
}