diff options
| author | Olcan <[email protected]> | 2025-04-28 18:40:24 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-28 18:40:24 -0700 |
| commit | 0d849bf58effd00e72a6a169bda8adc120086ac7 (patch) | |
| tree | 2f20863051bb4c8f7a4ca61e581e7b00ca475235 /package-lock.json | |
| parent | 3073c67861806a5312f5a7fa4c1c091507bd4755 (diff) | |
enable servers in sandbox to listen on localhost (127.0.0.1) instead of 0.0.0.0, ensuring servers can be container/host-agnostic (#207)
* enable servers in sandbox to listen on localhost (127.0.0.1) instead of 0.0.0.0, ensuring servers can be container/host-agnostic
* Merge remote-tracking branch 'origin/main' into sandbox_localhost_works
Diffstat (limited to 'package-lock.json')
| -rw-r--r-- | package-lock.json | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/package-lock.json b/package-lock.json index ae698b10..244738eb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1149,6 +1149,13 @@ "csstype": "^3.0.2" } }, + "node_modules/@types/shell-quote": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/@types/shell-quote/-/shell-quote-1.7.5.tgz", + "integrity": "sha512-+UE8GAGRPbJVQDdxi16dgadcBfQ+KG2vgZhV1+3A1XmHbmwcdwhCUwIdy+d3pAGrbvgRoVSjeI9vOWyq376Yzw==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/tinycolor2": { "version": "1.4.6", "resolved": "https://registry.npmjs.org/@types/tinycolor2/-/tinycolor2-1.4.6.tgz", @@ -5534,7 +5541,6 @@ "version": "1.8.2", "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", - "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -6850,6 +6856,7 @@ "lowlight": "^3.3.0", "react": "^18.3.1", "read-package-up": "^11.0.0", + "shell-quote": "^1.8.2", "yargs": "^17.7.2" }, "bin": { @@ -6861,6 +6868,7 @@ "@types/dotenv": "^6.1.1", "@types/node": "^20.11.24", "@types/react": "^19.1.0", + "@types/shell-quote": "^1.7.5", "@types/yargs": "^17.0.32", "typescript": "^5.3.3", "vitest": "^3.1.1" |
