mirror of
https://github.com/dalekurt/local-llm-stack.git
synced 2026-01-28 07:40:24 +00:00
11 lines
282 B
JavaScript
Executable File
11 lines
282 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const npx = require('libnpx')
|
|
const path = require('path')
|
|
|
|
const NPM_PATH = path.join(__dirname, 'node_modules', 'npm', 'bin', 'npm-cli.js')
|
|
|
|
const parsed = npx.parseArgs(process.argv, NPM_PATH)
|
|
parsed.npxPkg = path.join(__dirname, 'package.json')
|
|
npx(parsed)
|