uawdijnntqw1x1x1
IP : 216.73.217.77
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
learnoid.codeskitter.site
/
tests
/
..
/
node_modules
/
slash
/
..
/
.bin
/
nypm
/
/
#!/usr/bin/env node import { defineCommand, runMain } from 'citty'; import { resolve } from 'pathe'; import { consola } from 'consola'; import { a as addDependency, i as installDependencies, r as removeDependency, d as detectPackageManager, c as dedupeDependencies, f as runScript } from './shared/nypm.Bcw9TJOu.mjs'; import 'pkg-types'; import 'node:module'; import 'tinyexec'; import 'node:fs'; import 'node:fs/promises'; const name = "nypm"; const version = "0.6.0"; const description = "Unified Package Manager for Node.js"; const operationArgs = { cwd: { type: "string", description: "Current working directory" }, workspace: { type: "boolean", description: "Add to workspace" }, silent: { type: "boolean", description: "Run in silent mode" } }; const install = defineCommand({ meta: { description: "Install dependencies" }, args: { ...operationArgs, name: { type: "positional", description: "Dependency name", required: false }, dev: { type: "boolean", alias: "D", description: "Add as dev dependency" }, global: { type: "boolean", alias: "g", description: "Add globally" }, "frozen-lockfile": { type: "boolean", description: "Install dependencies with frozen lock file" } }, run: async ({ args }) => { await (args._.length > 0 ? addDependency(args._, args) : installDependencies(args)); } }); const remove = defineCommand({ meta: { description: "Remove dependencies" }, args: { name: { type: "positional", description: "Dependency name", required: true }, ...operationArgs }, run: async ({ args }) => { await removeDependency(args.name, args); } }); const detect = defineCommand({ meta: { description: "Detect the current package manager" }, args: { cwd: { type: "string", description: "Current working directory" } }, run: async ({ args }) => { const cwd = resolve(args.cwd || "."); const packageManager = await detectPackageManager(cwd); if (packageManager?.warnings) { for (const warning of packageManager.warnings) { consola.warn(warning); } } if (!packageManager) { consola.error(`Cannot detect package manager in \`${cwd}\``); return process.exit(1); } consola.log( `Detected package manager in \`${cwd}\`: \`${packageManager.name}@${packageManager.version}\`` ); } }); const dedupe = defineCommand({ meta: { description: "Dedupe dependencies" }, args: { cwd: { type: "string", description: "Current working directory" }, silent: { type: "boolean", description: "Run in silent mode" }, recreateLockFile: { type: "boolean", description: "Recreate lock file" } }, run: async ({ args }) => { await dedupeDependencies(args); } }); const run = defineCommand({ meta: { description: "Run script" }, args: { name: { type: "positional", description: "Script name", required: true }, ...operationArgs }, run: async ({ args }) => { await runScript(args.name, args); } }); const main = defineCommand({ meta: { name, version, description }, subCommands: { install, i: install, add: install, remove, rm: remove, uninstall: remove, un: remove, detect, dedupe, run } }); runMain(main);
/home/users/unlimited/www/learnoid.codeskitter.site/tests/../node_modules/slash/../.bin/nypm