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

@appifex/build

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appifex/build

Platform build drivers (xcodebuild / gradle) for the appifex-dtc pipeline

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
8
33.33%
Maintainers
2
Weekly downloads
 
Created
Source

@appifex/build

Build SwiftUI and Kotlin Compose projects via a Runner abstraction.

Usage

import { buildSwift, buildKotlinCompose } from '@appifex/build'
import { LocalRunner } from '@appifex/runner'

const runner = new LocalRunner(process.cwd())

// SwiftUI: xcodebuild
const swiftResult = await buildSwift(runner, {
  projectDir: './pet-app-ios',
  scheme: 'PetApp',
  destination: 'platform=iOS Simulator,name=iPhone 16',
})

// Kotlin Compose: Gradle
const ktResult = await buildKotlinCompose(runner, { projectDir: './pet-app-android' })

if (swiftResult.success) console.log('Swift build succeeded')
if (ktResult.success) console.log('Kotlin Compose build succeeded')

The Runner abstraction means the same build commands work locally, in E2B, or on a Mac Runner.

Keywords

appifex

FAQs

Package last updated on 20 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts