{ "devDependencies": { "@types/d3": "^7.4.3", "esbuild": "^0.27.2", "typescript": "^5.9.3" }, "scripts": { "compile": "npm run check-types && node esbuild.js", "check-types": "tsc --noEmit", "watch": "npm-run-all -p watch:*", "watch:esbuild": "node esbuild.js --watch", "watch:tsc": "tsc --noEmit --watch --project tsconfig.json", "vscode:prepublish": "npm run package", "package": "npm run check-types && node esbuild.js --production" }, "dependencies": { "d3": "^7.9.0" } }