Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@opencode-cloud/core

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opencode-cloud/core - npm Package Compare versions

Comparing version
12.0.0
to
12.0.1
+1
-1
Cargo.toml
[package]
name = "opencode-cloud-core"
version = "12.0.0"
version = "12.0.1"
edition = "2024"

@@ -5,0 +5,0 @@ rust-version = "1.89"

{
"name": "@opencode-cloud/core",
"version": "12.0.0",
"version": "12.0.1",
"description": "Core NAPI bindings for opencode-cloud (internal package)",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -203,10 +203,18 @@ # =============================================================================

# - node@25: pinned to major version
# - python@3.14: pinned to major version
# - python@3.13: pinned to major version (3.13 has precompiled binaries available)
# - go@1.25: pinned to minor version
RUN /home/opencode/.local/bin/mise install node@25 \
&& /home/opencode/.local/bin/mise install python@3.14 \
&& /home/opencode/.local/bin/mise install go@1.25 \
&& /home/opencode/.local/bin/mise use --global node@25 \
&& /home/opencode/.local/bin/mise use --global python@3.14 \
&& /home/opencode/.local/bin/mise use --global go@1.25
#
# MISE_PYTHON_COMPILE=0: Disable Python compilation from source.
# If no precompiled binary exists, mise will fail fast instead of hanging
# during a 30+ minute compilation that may timeout in CI.
#
# Timeout: 10 minutes max for all runtime installations as safety net.
RUN timeout 600 sh -c '\
export MISE_PYTHON_COMPILE=0 && \
/home/opencode/.local/bin/mise install node@25 && \
/home/opencode/.local/bin/mise install python@3.13 && \
/home/opencode/.local/bin/mise install go@1.25 && \
/home/opencode/.local/bin/mise use --global node@25 && \
/home/opencode/.local/bin/mise use --global python@3.13 && \
/home/opencode/.local/bin/mise use --global go@1.25'

@@ -213,0 +221,0 @@ # Set up mise shims in PATH for non-interactive shells