Files
cs249r_book/tinytorch/vscode-ext/package.json
dependabot[bot] 32232714ba deps(tinytorch-ext): bump @types/vscode in /tinytorch/vscode-ext (#1651)
Bumps [@types/vscode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/vscode) from 1.116.0 to 1.118.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/vscode)

---
updated-dependencies:
- dependency-name: "@types/vscode"
  dependency-version: 1.118.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-04 07:18:40 -04:00

83 lines
3.8 KiB
JSON

{
"name": "tinytorch-workbench",
"displayName": "TinyTorch Workbench",
"description": "Build, test, and manage TinyTorch educational ML framework modules",
"version": "0.1.0",
"publisher": "mlsysbook",
"icon": "resources/icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": ["Other"],
"activationEvents": [
"workspaceContains:tinytorch/src/01_tensor"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.118.0",
"@types/node": "^25.6.0",
"typescript": "^6.0.3"
},
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "tinytorch",
"title": "TinyTorch",
"icon": "resources/icon.svg"
}
]
},
"views": {
"tinytorch": [
{ "id": "tinytorch.modules", "name": "Modules" },
{ "id": "tinytorch.testing", "name": "Testing" },
{ "id": "tinytorch.build", "name": "Build & Site" },
{ "id": "tinytorch.runs", "name": "Recent Runs" },
{ "id": "tinytorch.info", "name": "Info & Health" }
]
},
"commands": [
{ "command": "tinytorch.openNotebook", "title": "TinyTorch: Open Notebook" },
{ "command": "tinytorch.openSource", "title": "TinyTorch: Open Source (.py)" },
{ "command": "tinytorch.startModule", "title": "TinyTorch: Start Module" },
{ "command": "tinytorch.viewModule", "title": "TinyTorch: Open Module in Jupyter" },
{ "command": "tinytorch.testModule", "title": "TinyTorch: Test Module" },
{ "command": "tinytorch.completeModule", "title": "TinyTorch: Complete Module" },
{ "command": "tinytorch.resetModule", "title": "TinyTorch: Reset Module" },
{ "command": "tinytorch.openAbout", "title": "TinyTorch: Open Module ABOUT" },
{ "command": "tinytorch.runAction", "title": "TinyTorch: Run Action" },
{ "command": "tinytorch.runSiteAction", "title": "TinyTorch: Run Site Action" },
{ "command": "tinytorch.runPaperAction", "title": "TinyTorch: Run Paper Action" },
{ "command": "tinytorch.runTests", "title": "TinyTorch: Run Tests" },
{ "command": "tinytorch.buildSite", "title": "TinyTorch: Build HTML Site" },
{ "command": "tinytorch.buildPdf", "title": "TinyTorch: Build PDF Course Guide" },
{ "command": "tinytorch.buildPaper", "title": "TinyTorch: Build Research Paper" },
{ "command": "tinytorch.openSiteInBrowser", "title": "TinyTorch: Open Site in Browser" },
{ "command": "tinytorch.openPdf", "title": "TinyTorch: Open PDF" },
{ "command": "tinytorch.healthCheck", "title": "TinyTorch: Health Check" },
{ "command": "tinytorch.refreshModules", "title": "TinyTorch: Refresh Modules", "icon": "$(refresh)" },
{ "command": "tinytorch.refreshRuns", "title": "TinyTorch: Refresh Runs", "icon": "$(refresh)" },
{ "command": "tinytorch.rerunLastCommand", "title": "TinyTorch: Rerun Last Command", "icon": "$(history)" },
{ "command": "tinytorch.revealTerminal", "title": "TinyTorch: Reveal Terminal", "icon": "$(terminal)" },
{ "command": "tinytorch.rerunCommand", "title": "TinyTorch: Rerun Command" }
],
"configurationDefaults": {
"workbench.tree.indent": 16
},
"menus": {
"view/title": [
{ "command": "tinytorch.refreshModules", "when": "view == tinytorch.modules", "group": "navigation" },
{ "command": "tinytorch.refreshRuns", "when": "view == tinytorch.runs", "group": "navigation@1" },
{ "command": "tinytorch.rerunLastCommand", "when": "view == tinytorch.runs", "group": "navigation@2" },
{ "command": "tinytorch.revealTerminal", "when": "view == tinytorch.runs", "group": "navigation@3" }
]
}
}
}