├── .gitattributes ├── .github ├── ISSUE_TEMPLATE ├── pull_request_template.md └── workflows │ └── ci.yml ├── LICENSE ├── README.md ├── docs └── design │ ├── README.md │ ├── references │ └── METADATA.md │ └── registry.md ├── nupm.nuon ├── nupm ├── install.nu ├── mod.nu ├── publish.nu ├── registry.nu ├── search.nu ├── status.nu ├── test.nu └── utils │ ├── completions.nu │ ├── dirs.nu │ ├── log.nu │ ├── misc.nu │ ├── package.nu │ ├── registry.nu │ └── version.nu ├── registry ├── nu-clippy.nuon ├── nu-discord-update.nuon ├── nu-fonts-install.nuon ├── nu-git-manager-sugar.nuon ├── nu-git-manager.nuon ├── nu-hooks.nuon ├── nu-logout.nuon ├── nu-monitor-manager.nuon ├── nu-pomodoro.nuon ├── nu-right-prompt.nuon ├── nu-scripts.nuon ├── nu-sound-manager.nuon ├── nu-themes.nuon ├── nu-zellij.nuon ├── nu_plugin_audio_hook.nuon ├── nu_plugin_clipboard.nuon ├── nu_plugin_desktop_notifications.nuon ├── nu_plugin_explore.nuon ├── nu_plugin_image.nuon ├── nu_plugin_port_list.nuon ├── nu_plugin_port_scan.nuon ├── nu_plugin_qr_maker.nuon ├── nupm_pkg.nuon ├── registry.nuon └── tmux-sessionizer.nuon ├── scripts └── print-nuon.nu ├── tests ├── mod.nu └── packages │ ├── registry │ ├── registry.nuon │ ├── spam_custom.nuon │ ├── spam_module.nuon │ └── spam_script.nuon │ ├── spam_custom │ ├── build.nu │ └── nupm.nuon │ ├── spam_module │ ├── nupm.nuon │ ├── script.nu │ └── spam_module │ │ └── mod.nu │ ├── spam_script │ ├── nupm.nuon │ ├── spam_bar.nu │ └── spam_script.nu │ └── spam_script_old │ ├── nupm.nuon │ └── spam_script.nu └── toolkit.nu /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/README.md -------------------------------------------------------------------------------- /docs/design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/docs/design/README.md -------------------------------------------------------------------------------- /docs/design/references/METADATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/docs/design/references/METADATA.md -------------------------------------------------------------------------------- /docs/design/registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/docs/design/registry.md -------------------------------------------------------------------------------- /nupm.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm.nuon -------------------------------------------------------------------------------- /nupm/install.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/install.nu -------------------------------------------------------------------------------- /nupm/mod.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/mod.nu -------------------------------------------------------------------------------- /nupm/publish.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/publish.nu -------------------------------------------------------------------------------- /nupm/registry.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/registry.nu -------------------------------------------------------------------------------- /nupm/search.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/search.nu -------------------------------------------------------------------------------- /nupm/status.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/status.nu -------------------------------------------------------------------------------- /nupm/test.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/test.nu -------------------------------------------------------------------------------- /nupm/utils/completions.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/utils/completions.nu -------------------------------------------------------------------------------- /nupm/utils/dirs.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/utils/dirs.nu -------------------------------------------------------------------------------- /nupm/utils/log.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/utils/log.nu -------------------------------------------------------------------------------- /nupm/utils/misc.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/utils/misc.nu -------------------------------------------------------------------------------- /nupm/utils/package.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/utils/package.nu -------------------------------------------------------------------------------- /nupm/utils/registry.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/utils/registry.nu -------------------------------------------------------------------------------- /nupm/utils/version.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/nupm/utils/version.nu -------------------------------------------------------------------------------- /registry/nu-clippy.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-clippy.nuon -------------------------------------------------------------------------------- /registry/nu-discord-update.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-discord-update.nuon -------------------------------------------------------------------------------- /registry/nu-fonts-install.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-fonts-install.nuon -------------------------------------------------------------------------------- /registry/nu-git-manager-sugar.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-git-manager-sugar.nuon -------------------------------------------------------------------------------- /registry/nu-git-manager.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-git-manager.nuon -------------------------------------------------------------------------------- /registry/nu-hooks.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-hooks.nuon -------------------------------------------------------------------------------- /registry/nu-logout.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-logout.nuon -------------------------------------------------------------------------------- /registry/nu-monitor-manager.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-monitor-manager.nuon -------------------------------------------------------------------------------- /registry/nu-pomodoro.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-pomodoro.nuon -------------------------------------------------------------------------------- /registry/nu-right-prompt.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-right-prompt.nuon -------------------------------------------------------------------------------- /registry/nu-scripts.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-scripts.nuon -------------------------------------------------------------------------------- /registry/nu-sound-manager.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-sound-manager.nuon -------------------------------------------------------------------------------- /registry/nu-themes.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-themes.nuon -------------------------------------------------------------------------------- /registry/nu-zellij.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu-zellij.nuon -------------------------------------------------------------------------------- /registry/nu_plugin_audio_hook.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu_plugin_audio_hook.nuon -------------------------------------------------------------------------------- /registry/nu_plugin_clipboard.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu_plugin_clipboard.nuon -------------------------------------------------------------------------------- /registry/nu_plugin_desktop_notifications.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu_plugin_desktop_notifications.nuon -------------------------------------------------------------------------------- /registry/nu_plugin_explore.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu_plugin_explore.nuon -------------------------------------------------------------------------------- /registry/nu_plugin_image.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu_plugin_image.nuon -------------------------------------------------------------------------------- /registry/nu_plugin_port_list.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu_plugin_port_list.nuon -------------------------------------------------------------------------------- /registry/nu_plugin_port_scan.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu_plugin_port_scan.nuon -------------------------------------------------------------------------------- /registry/nu_plugin_qr_maker.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nu_plugin_qr_maker.nuon -------------------------------------------------------------------------------- /registry/nupm_pkg.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/nupm_pkg.nuon -------------------------------------------------------------------------------- /registry/registry.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/registry.nuon -------------------------------------------------------------------------------- /registry/tmux-sessionizer.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/registry/tmux-sessionizer.nuon -------------------------------------------------------------------------------- /scripts/print-nuon.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/scripts/print-nuon.nu -------------------------------------------------------------------------------- /tests/mod.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/tests/mod.nu -------------------------------------------------------------------------------- /tests/packages/registry/registry.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/tests/packages/registry/registry.nuon -------------------------------------------------------------------------------- /tests/packages/registry/spam_custom.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/tests/packages/registry/spam_custom.nuon -------------------------------------------------------------------------------- /tests/packages/registry/spam_module.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/tests/packages/registry/spam_module.nuon -------------------------------------------------------------------------------- /tests/packages/registry/spam_script.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/tests/packages/registry/spam_script.nuon -------------------------------------------------------------------------------- /tests/packages/spam_custom/build.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/tests/packages/spam_custom/build.nu -------------------------------------------------------------------------------- /tests/packages/spam_custom/nupm.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/tests/packages/spam_custom/nupm.nuon -------------------------------------------------------------------------------- /tests/packages/spam_module/nupm.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/tests/packages/spam_module/nupm.nuon -------------------------------------------------------------------------------- /tests/packages/spam_module/script.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/tests/packages/spam_module/script.nu -------------------------------------------------------------------------------- /tests/packages/spam_module/spam_module/mod.nu: -------------------------------------------------------------------------------- 1 | export def main [] { 2 | "Hello world!" 3 | } 4 | -------------------------------------------------------------------------------- /tests/packages/spam_script/nupm.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/tests/packages/spam_script/nupm.nuon -------------------------------------------------------------------------------- /tests/packages/spam_script/spam_bar.nu: -------------------------------------------------------------------------------- 1 | export def main [] { 2 | 'Hello bar!' 3 | } 4 | -------------------------------------------------------------------------------- /tests/packages/spam_script/spam_script.nu: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env nu 2 | def main [] { 3 | "Hello world v0.2.0!" 4 | } 5 | -------------------------------------------------------------------------------- /tests/packages/spam_script_old/nupm.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/tests/packages/spam_script_old/nupm.nuon -------------------------------------------------------------------------------- /tests/packages/spam_script_old/spam_script.nu: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env nu 2 | def main [] { 3 | "Hello world v0.1.0!" 4 | } 5 | -------------------------------------------------------------------------------- /toolkit.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nupm/HEAD/toolkit.nu --------------------------------------------------------------------------------