refactor: remove @zigc to dedicated repo

This commit is contained in:
Nurul Huda (Apon) 2026-03-29 01:30:44 +06:00
parent b1622304fa
commit cbb63d14cf
No known key found for this signature in database
GPG Key ID: 5D3F1DE2855A2F79
26 changed files with 154 additions and 2105 deletions

30
pkg/@ziex/README.md Normal file
View File

@ -0,0 +1,30 @@
# @ziex/cli
Ziex CLI Node Package Manager (npm) distribution.
## Usage
```bash
# Run directly
npx @ziex/cli version
bunx @ziex/cli version
# Or install globally
npm install -g @ziex/cli
zig version
```
## How it works
The `@ziex/cli` package resolves the correct native binary for your platform via optional dependencies:
| Package | Platform |
|---------|----------|
| `@ziex/cli-darwin-arm64` | macOS Apple Silicon |
| `@ziex/cli-darwin-x64` | macOS Intel |
| `@ziex/cli-linux-x64` | Linux x64 |
| `@ziex/cli-linux-arm64` | Linux ARM64 |
| `@ziex/cli-win32-x64` | Windows x64 |
| `@ziex/cli-win32-arm64` | Windows ARM64 |
The standard library is shipped separately in `@ziex/lib` (shared across all platforms).

View File

@ -1,9 +1,13 @@
{
"name": "@ziex/cli-darwin-arm64",
"version": "0.1.0-dev.0",
"version": "0.1.0-dev.928",
"description": "ziex CLI binary for macOS ARM64 (Apple Silicon)",
"os": ["darwin"],
"cpu": ["arm64"],
"os": [
"darwin"
],
"cpu": [
"arm64"
],
"bin": {
"zx": "bin/zx",
"ziex": "bin/zx"

View File

@ -1,9 +1,13 @@
{
"name": "@ziex/cli-darwin-x64",
"version": "0.0.0",
"version": "0.1.0-dev.928",
"description": "ziex CLI binary for macOS x64 (Intel)",
"os": ["darwin"],
"cpu": ["x64"],
"os": [
"darwin"
],
"cpu": [
"x64"
],
"bin": {
"zx": "bin/zx",
"ziex": "bin/zx"

View File

@ -1,9 +1,13 @@
{
"name": "@ziex/cli-linux-arm64",
"version": "0.0.0",
"version": "0.1.0-dev.928",
"description": "ziex CLI binary for Linux ARM64",
"os": ["linux"],
"cpu": ["arm64"],
"os": [
"linux"
],
"cpu": [
"arm64"
],
"bin": {
"zx": "bin/zx",
"ziex": "bin/zx"

View File

@ -1,9 +1,13 @@
{
"name": "@ziex/cli-linux-x64",
"version": "0.0.0",
"version": "0.1.0-dev.928",
"description": "ziex CLI binary for Linux x64",
"os": ["linux"],
"cpu": ["x64"],
"os": [
"linux"
],
"cpu": [
"x64"
],
"bin": {
"zx": "bin/zx",
"ziex": "bin/zx"

View File

@ -1,9 +1,13 @@
{
"name": "@ziex/cli-win32-arm64",
"version": "0.0.0",
"version": "0.1.0-dev.928",
"description": "ziex CLI binary for Windows ARM64",
"os": ["win32"],
"cpu": ["arm64"],
"os": [
"win32"
],
"cpu": [
"arm64"
],
"bin": {
"zx": "bin/zx.exe",
"ziex": "bin/zx.exe"

View File

@ -1,9 +1,13 @@
{
"name": "@ziex/cli-win32-x64",
"version": "0.0.0",
"version": "0.1.0-dev.928",
"description": "ziex CLI binary for Windows x64",
"os": ["win32"],
"cpu": ["x64"],
"os": [
"win32"
],
"cpu": [
"x64"
],
"bin": {
"zx": "bin/zx.exe",
"ziex": "bin/zx.exe"

View File

@ -0,0 +1,27 @@
{
"name": "@ziex/cli",
"version": "0.1.0-dev.928",
"description": "ZX is a framework for building web applications with Zig.",
"type": "module",
"scripts": {
"postinstall": "node install.cjs"
},
"bin": {
"zx": "bin/zx",
"ziex": "bin/zx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziex-dev/ziex.git"
},
"license": "MIT",
"preferUnplugged": true,
"optionalDependencies": {
"@ziex/cli-darwin-arm64": "0.1.0-dev.928",
"@ziex/cli-darwin-x64": "0.1.0-dev.928",
"@ziex/cli-linux-x64": "0.1.0-dev.928",
"@ziex/cli-linux-arm64": "0.1.0-dev.928",
"@ziex/cli-win32-x64": "0.1.0-dev.928",
"@ziex/cli-win32-arm64": "0.1.0-dev.928"
}
}

View File

@ -1,25 +1,25 @@
{
"name": "@zigc",
"version": "0.15.20",
"name": "@ziex/org",
"version": "0.1.0-dev.928",
"private": true,
"description": "Zig Compiler binary distribution via npm",
"description": "Ziex CLI distribution via npm",
"scripts": {
"prepare": "bash prepare.sh",
"publish": "npm publish --workspaces --access public",
"start:registry": "verdaccio --config verdaccio.yaml --listen 4873",
"publish:local": "npm publish --workspaces --registry http://localhost:4873",
"syncver": "npm version --ignore-scripts --workspace lib --workspace cli --workspace darwin-arm64 --workspace darwin-x64 --workspace linux-x64 --workspace linux-arm64 --workspace win32-x64 --workspace win32-arm64"
"syncver": "npm version --ignore-scripts --workspace lib --workspace cli --workspace cli-darwin-arm64 --workspace cli-darwin-x64 --workspace cli-linux-x64 --workspace cli-linux-arm64 --workspace cli-win32-x64 --workspace cli-win32-arm64"
},
"workspaces": [
"lib",
"cli",
"darwin-arm64",
"darwin-x64",
"linux-x64",
"linux-arm64",
"win32-x64",
"win32-arm64"
"cli-darwin-arm64",
"cli-darwin-x64",
"cli-linux-x64",
"cli-linux-arm64",
"cli-win32-x64",
"cli-win32-arm64"
],
"homepage": "https://ziex.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/ziex-dev/ziex.git"

44
pkg/@ziex/prepare.sh Executable file
View File

@ -0,0 +1,44 @@
#!/bin/bash
set -euo pipefail
# Downloads Zig compiler binaries for all platforms.
# Reads version from package.json.
# Places lib/ in the shared @zigc/lib package (identical across platforms).
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
ZIEX_VER=$(node -p "require('$SCRIPT_DIR/package.json').version")
LIB_COPIED=false
# Update version in all workspace package.json files
echo "Updating package versions to $ZIEX_VER..."
for pkg in cli cli-darwin-arm64 cli-darwin-x64 cli-linux-x64 cli-linux-arm64 cli-win32-x64 cli-win32-arm64; do
pkg_json="$SCRIPT_DIR/$pkg/package.json"
[ -f "$pkg_json" ] || continue
node -e "
const fs = require('fs');
const p = JSON.parse(fs.readFileSync('$pkg_json', 'utf8'));
p.version = '$ZIEX_VER';
// Update any @ziex/cli-* refs in dependencies / optionalDependencies
for (const key of ['dependencies', 'optionalDependencies']) {
if (!p[key]) continue;
for (const dep of Object.keys(p[key])) {
if (dep.startsWith('@ziex/cli-')) p[key][dep] = '$ZIEX_VER';
}
}
fs.writeFileSync('$pkg_json', JSON.stringify(p, null, 2) + '\n');
"
done
# --version: only sync package versions, skip downloads
if [[ "${1:-}" == "--version" ]]; then
echo "Done."
exit 0
fi
# Copy README.md to all packages
echo "Copying README.md to all packages..."
for dir in cli cli-darwin-arm64 cli-darwin-x64 cli-linux-x64 cli-linux-arm64 cli-win32-x64 cli-win32-arm64; do
cp "$SCRIPT_DIR/README.md" "$SCRIPT_DIR/$dir/README.md"
done
echo "All packages ready!"

View File

@ -1,50 +0,0 @@
{
"name": "ziex",
"version": "0.1.0-dev.865",
"description": "ZX is a framework for building web applications with Zig.",
"main": "src/index.ts",
"type": "module",
"bin": {
"ziex": "bin/ziex",
"zx": "bin/ziex"
},
"exports": {
".": "./index.js",
"./react": "./react/index.js",
"./wasm": "./wasm/index.js",
"./wasm/init": "./wasm/init.js",
"./cloudflare": "./cloudflare/index.js",
"./aws-lambda": "./aws-lambda/index.js",
"./vercel": "./vercel/index.js"
},
"homepage": "https://ziex.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/ziex-dev/ziex.git"
},
"keywords": [
"zx",
"zig",
"web framework",
"jsx",
"react",
"server components",
"client components",
"server actions",
"client actions",
"server actions"
],
"author": "Nurul Huda (Apon) <me@nurulhudaapon.com>",
"license": "MIT",
"scripts": {
"postinstall": "node install.cjs"
},
"optionalDependencies": {
"@ziex/cli-darwin-arm64": "0.1.0-dev.865",
"@ziex/cli-darwin-x64": "0.1.0-dev.865",
"@ziex/cli-linux-x64": "0.1.0-dev.865",
"@ziex/cli-linux-arm64": "0.1.0-dev.865",
"@ziex/cli-win32-x64": "0.1.0-dev.865",
"@ziex/cli-win32-arm64": "0.1.0-dev.865"
}
}

View File

@ -1,34 +0,0 @@
# @zigc/cli
Zig compiler distributed via npm. Run Zig without installing it system-wide or in CI/CD where Zig is not available and/or only NPM is available.
## Usage
```bash
# Run directly
npx @zigc/cli version
bunx @zigc/cli version
# Or install globally
npm install -g @zigc/cli
zig version
```
## How it works
The `@zigc/cli` package resolves the correct native binary for your platform via optional dependencies:
| Package | Platform |
|---------|----------|
| `@zigc/darwin-arm64` | macOS Apple Silicon |
| `@zigc/darwin-x64` | macOS Intel |
| `@zigc/linux-x64` | Linux x64 |
| `@zigc/linux-arm64` | Linux ARM64 |
| `@zigc/win32-x64` | Windows x64 |
| `@zigc/win32-arm64` | Windows ARM64 |
The standard library is shipped separately in `@zigc/lib` (shared across all platforms).
## License
MIT

View File

@ -1,26 +0,0 @@
{
"name": "@zigc/cli",
"version": "0.15.20",
"type": "module",
"description": "Zig compiler CLI via npm - run `bunx @zigc/cli` or `npx @zigc/cli`",
"bin": {
"zig": "bin/zig"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziex-dev/ziex.git"
},
"license": "MIT",
"preferUnplugged": true,
"dependencies": {
"@zigc/lib": "0.15.20"
},
"optionalDependencies": {
"@zigc/darwin-arm64": "0.15.20",
"@zigc/darwin-x64": "0.15.20",
"@zigc/linux-x64": "0.15.20",
"@zigc/linux-arm64": "0.15.20",
"@zigc/win32-x64": "0.15.20",
"@zigc/win32-arm64": "0.15.20"
}
}

View File

@ -1,20 +0,0 @@
{
"name": "@zigc/darwin-arm64",
"version": "0.15.20",
"description": "Zig compiler binary for macOS ARM64 (Apple Silicon)",
"os": [
"darwin"
],
"cpu": [
"arm64"
],
"bin": {
"zig": "bin/zig"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziex-dev/ziex.git"
},
"license": "MIT",
"preferUnplugged": true
}

View File

@ -1,20 +0,0 @@
{
"name": "@zigc/darwin-x64",
"version": "0.15.20",
"description": "Zig compiler binary for macOS x64 (Intel)",
"os": [
"darwin"
],
"cpu": [
"x64"
],
"bin": {
"zig": "bin/zig"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziex-dev/ziex.git"
},
"license": "MIT",
"preferUnplugged": true
}

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +0,0 @@
{
"name": "@zigc/lib",
"version": "0.15.20",
"description": "Zig standard library and libc headers (shared across all platforms)",
"repository": {
"type": "git",
"url": "git+https://github.com/ziex-dev/ziex.git"
},
"license": "MIT"
}

View File

@ -1,20 +0,0 @@
{
"name": "@zigc/linux-arm64",
"version": "0.15.20",
"description": "Zig compiler binary for Linux ARM64",
"os": [
"linux"
],
"cpu": [
"arm64"
],
"bin": {
"zig": "bin/zig"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziex-dev/ziex.git"
},
"license": "MIT",
"preferUnplugged": true
}

View File

@ -1,20 +0,0 @@
{
"name": "@zigc/linux-x64",
"version": "0.15.20",
"description": "Zig compiler binary for Linux x64",
"os": [
"linux"
],
"cpu": [
"x64"
],
"bin": {
"zig": "bin/zig"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziex-dev/ziex.git"
},
"license": "MIT",
"preferUnplugged": true
}

View File

@ -1,253 +0,0 @@
#!/bin/bash
set -euo pipefail
# Downloads Zig compiler binaries for all platforms.
# Reads version from package.json.
# Places lib/ in the shared @zigc/lib package (identical across platforms).
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
ZIG_VER=$(node -p "require('$SCRIPT_DIR/package.json').version")
LIB_DIR="$SCRIPT_DIR/lib"
CACHE_DIR="$SCRIPT_DIR/.cache"
LIB_COPIED=false
# Zig signing public key (from https://ziglang.org/download/)
ZIG_PUBKEY="RWSGOq2NVecA2UPNdBUZykf1CCb147pkmdtYxgb3Ti+JO/wCYvhbAb/U"
# For dev versions, read full version (with +hash) from index.json
# npm strips the +hash from package.json versions
ZIG_FULL_VER="$ZIG_VER"
if [[ "$ZIG_VER" == *"-dev"* ]] && [ -f "$SCRIPT_DIR/index.json" ]; then
ZIG_FULL_VER=$(node -p "require('$SCRIPT_DIR/index.json').master.version")
fi
# Update version in all workspace package.json files
echo "Updating package versions to $ZIG_VER..."
for pkg in lib cli darwin-arm64 darwin-x64 linux-x64 linux-arm64 win32-x64 win32-arm64; do
pkg_json="$SCRIPT_DIR/$pkg/package.json"
[ -f "$pkg_json" ] || continue
node -e "
const fs = require('fs');
const p = JSON.parse(fs.readFileSync('$pkg_json', 'utf8'));
p.version = '$ZIG_VER';
// Update any @zigc/* refs in dependencies / optionalDependencies
for (const key of ['dependencies', 'optionalDependencies']) {
if (!p[key]) continue;
for (const dep of Object.keys(p[key])) {
if (dep.startsWith('@zigc/')) p[key][dep] = '$ZIG_VER';
}
}
fs.writeFileSync('$pkg_json', JSON.stringify(p, null, 2) + '\n');
"
done
# --version: only sync package versions, skip downloads
if [[ "${1:-}" == "--version" ]]; then
echo "Done."
exit 0
fi
# Dev builds use /builds/, releases use /download/<ver>/
if [[ "$ZIG_FULL_VER" == *"-dev"* ]]; then
OFFICIAL_BASE="https://ziglang.org/builds"
else
OFFICIAL_BASE="https://ziglang.org/download/${ZIG_FULL_VER}"
fi
# Check for minisign; prompt to continue without verification if missing
MINISIGN_AVAILABLE=true
if ! command -v minisign &>/dev/null; then
MINISIGN_AVAILABLE=false
echo "warning: 'minisign' not found — archive signatures cannot be verified."
echo " Install: https://jedisct1.github.io/minisign/"
read -r -p " Continue without signature verification? [y/N] " reply
if [[ ! "$reply" =~ ^[yY]$ ]]; then
exit 1
fi
fi
# Fetch community mirrors, shuffle them, append official as final fallback
echo "Fetching mirrors..."
MIRROR_RAW=$(curl -fsSL "https://ziglang.org/download/community-mirrors.txt" 2>/dev/null || echo "")
SHUFFLED_MIRRORS=$(printf '%s\n' "$MIRROR_RAW" | python3 -c "
import sys, random
lines = [l.strip() for l in sys.stdin if l.strip()]
random.shuffle(lines)
print('\n'.join(lines))
")
# Append official base as last-resort fallback
SHUFFLED_MIRRORS="${SHUFFLED_MIRRORS}
${OFFICIAL_BASE}"
# --version: only sync package versions, skip downloads
if [[ "${1:-}" == "--version" ]]; then
echo "Done."
exit 0
fi
echo "Downloading Zig $ZIG_FULL_VER for all platforms..."
# Track version to detect stale binaries
VERSION_FILE="$SCRIPT_DIR/.zig-version"
OLD_VER=""
if [ -f "$VERSION_FILE" ]; then
OLD_VER=$(cat "$VERSION_FILE")
fi
# If version changed, clean all binaries and lib
if [ -n "$OLD_VER" ] && [ "$OLD_VER" != "$ZIG_FULL_VER" ]; then
echo " Version changed ($OLD_VER -> $ZIG_VER), cleaning old binaries..."
rm -rf "$SCRIPT_DIR"/darwin-arm64/bin "$SCRIPT_DIR"/darwin-x64/bin \
"$SCRIPT_DIR"/linux-x64/bin "$SCRIPT_DIR"/linux-arm64/bin \
"$SCRIPT_DIR"/win32-x64/bin "$SCRIPT_DIR"/win32-arm64/bin
# Remove lib contents but preserve package.json
find "$LIB_DIR" -mindepth 1 -not -name 'package.json' -delete 2>/dev/null || true
fi
# platform-dir zig-target archive-ext
PLATFORMS=(
"darwin-arm64 aarch64-macos tar.xz"
"darwin-x64 x86_64-macos tar.xz"
"linux-x64 x86_64-linux tar.xz"
"linux-arm64 aarch64-linux tar.xz"
"win32-x64 x86_64-windows zip"
"win32-arm64 aarch64-windows zip"
)
# Check if lib is already populated with actual Zig content
if [ -d "$LIB_DIR/std" ]; then
LIB_COPIED=true
fi
for entry in "${PLATFORMS[@]}"; do
read -r dir target ext <<< "$entry"
pkg_dir="$SCRIPT_DIR/$dir"
bin_dir="$pkg_dir/bin"
mkdir -p "$bin_dir"
if [ -f "$bin_dir/zig" ] || [ -f "$bin_dir/zig.exe" ]; then
echo " $dir: already exists, skipping"
continue
fi
archive_name="zig-${target}-${ZIG_FULL_VER}.${ext}"
extracted_dir="zig-${target}-${ZIG_FULL_VER}"
cached_archive="$CACHE_DIR/$ZIG_FULL_VER/$archive_name"
cached_minisig="${cached_archive}.minisig"
# Try to use verified cached archive, otherwise fetch from mirrors
_cache_valid() {
[ -f "$cached_archive" ] || return 1
if [ "$MINISIGN_AVAILABLE" = true ]; then
[ -f "$cached_minisig" ] && \
minisign -V -P "$ZIG_PUBKEY" -m "$cached_archive" -x "$cached_minisig" -q 2>/dev/null
else
return 0
fi
}
if _cache_valid; then
echo " $dir: using cached archive"
else
rm -f "$cached_archive" "$cached_minisig"
mkdir -p "$CACHE_DIR/$ZIG_FULL_VER"
fetched=false
while IFS= read -r mirror; do
[ -z "$mirror" ] && continue
url="${mirror}/${archive_name}"
tmp_archive="${cached_archive}.tmp"
tmp_minisig="${cached_minisig}.tmp"
echo " $dir: trying ${mirror}..."
curl -fsSL "${url}?source=zigc-npm" -o "$tmp_archive" 2>/dev/null || { rm -f "$tmp_archive"; continue; }
if [ "$MINISIGN_AVAILABLE" = true ]; then
curl -fsSL "${url}.minisig?source=zigc-npm" -o "$tmp_minisig" 2>/dev/null || { rm -f "$tmp_archive" "$tmp_minisig"; continue; }
# Verify signature
if ! minisign -V -P "$ZIG_PUBKEY" -m "$tmp_archive" -x "$tmp_minisig" -q 2>/dev/null; then
echo " $dir: signature verification failed, skipping mirror"
rm -f "$tmp_archive" "$tmp_minisig"
continue
fi
# Verify filename in trusted comment to prevent downgrade attacks
actual_name=$(grep "^trusted comment:" "$tmp_minisig" | sed 's/.*\bfile:\([^ \t]*\).*/\1/')
if [ "$actual_name" != "$archive_name" ]; then
echo " $dir: filename mismatch in signature (got '$actual_name'), skipping mirror"
rm -f "$tmp_archive" "$tmp_minisig"
continue
fi
mv "$tmp_minisig" "$cached_minisig"
fi
mv "$tmp_archive" "$cached_archive"
fetched=true
break
done <<< "$SHUFFLED_MIRRORS"
if [ "$fetched" = false ]; then
echo " $dir: all mirrors failed"
exit 1
fi
fi
echo " $dir: extracting..."
if [ "$ext" = "zip" ]; then
(cd "$pkg_dir" && unzip -qo "$cached_archive")
cp "$pkg_dir/$extracted_dir/zig.exe" "$bin_dir/zig.exe"
else
(cd "$pkg_dir" && tar xf "$cached_archive")
cp "$pkg_dir/$extracted_dir/zig" "$bin_dir/zig"
chmod +x "$bin_dir/zig"
fi
# Copy lib/ to shared @zigc/lib package (only once, identical across platforms)
if [ "$LIB_COPIED" = false ] && [ -d "$pkg_dir/$extracted_dir/lib" ]; then
echo " lib: copying shared lib/ from $dir"
mkdir -p "$LIB_DIR"
cp -r "$pkg_dir/$extracted_dir/lib/"* "$LIB_DIR/"
LIB_COPIED=true
fi
# Clean up extracted directory (keep cached archive)
rm -rf "$pkg_dir/$extracted_dir"
echo " $dir: done"
done
# If all binaries were already cached, lib may not have been copied yet — extract it now
if [ "$LIB_COPIED" = false ]; then
for entry in "${PLATFORMS[@]}"; do
read -r dir target ext <<< "$entry"
archive_name="zig-${target}-${ZIG_FULL_VER}.${ext}"
cached_archive="$CACHE_DIR/$ZIG_FULL_VER/$archive_name"
extracted_dir="zig-${target}-${ZIG_FULL_VER}"
pkg_dir="$SCRIPT_DIR/$dir"
[ -f "$cached_archive" ] || continue
echo " lib: extracting from cached $dir archive..."
if [ "$ext" = "zip" ]; then
(cd "$pkg_dir" && unzip -qo "$cached_archive" "${extracted_dir}/lib/*")
else
(cd "$pkg_dir" && tar xf "$cached_archive" "${extracted_dir}/lib")
fi
mkdir -p "$LIB_DIR"
cp -r "$pkg_dir/$extracted_dir/lib/"* "$LIB_DIR/"
rm -rf "$pkg_dir/$extracted_dir"
LIB_COPIED=true
break
done
fi
# Copy README.md to all packages
echo "Copying README.md to all packages..."
for dir in cli lib darwin-arm64 darwin-x64 linux-x64 linux-arm64 win32-x64 win32-arm64; do
cp "$SCRIPT_DIR/README.md" "$SCRIPT_DIR/$dir/README.md"
done
# Save current version
echo "$ZIG_FULL_VER" > "$VERSION_FILE"
echo "All platforms ready!"

View File

@ -1,20 +0,0 @@
{
"name": "@zigc/win32-arm64",
"version": "0.15.20",
"description": "Zig compiler binary for Windows ARM64",
"os": [
"win32"
],
"cpu": [
"arm64"
],
"bin": {
"zig": "bin/zig.exe"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziex-dev/ziex.git"
},
"license": "MIT",
"preferUnplugged": true
}

View File

@ -1,20 +0,0 @@
{
"name": "@zigc/win32-x64",
"version": "0.15.20",
"description": "Zig compiler binary for Windows x64",
"os": [
"win32"
],
"cpu": [
"x64"
],
"bin": {
"zig": "bin/zig.exe"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziex-dev/ziex.git"
},
"license": "MIT",
"preferUnplugged": true
}