proofmode 0.9.0

Capture, share, and preserve verifiable photos and videos
Documentation
#!/usr/bin/env node

// Start the CLI with proper Node.js configuration
import { spawn } from 'child_process';
import { fileURLToPath } from 'url';
import { dirname, join } from 'path';

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

// Run with experimental modules support
const child = spawn('node', [
  '--experimental-wasm-modules', 
  '--experimental-modules',
  join(__dirname, 'cli.js'),
  ...process.argv.slice(2)
], {
  stdio: 'inherit',
  env: process.env
});

child.on('exit', (code) => {
  process.exit(code || 0);
});