From c0f05feb6d59cdaf0bf9c0f9a13ba78afd49cc8e Mon Sep 17 00:00:00 2001 From: Naoki Oketani Date: Fri, 2 May 2025 04:06:10 +0000 Subject: [PATCH] Update devcontainer.json: Node.js 20, add Claude extension, enable GitHub CLI --- .devcontainer/devcontainer.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 94c50c5..6828646 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,11 +1,15 @@ { "name": "npm-audit-action-dev", - "image": "mcr.microsoft.com/devcontainers/javascript-node:18", + "image": "mcr.microsoft.com/devcontainers/javascript-node:20", + "features": { + "ghcr.io/devcontainers/features/github-cli:1": {} + }, "customizations": { "vscode": { "extensions": [ "EditorConfig.EditorConfig", - "GitHub.copilot" + "GitHub.copilot", + "saoudrizwan.claude-dev" ] } }