Tools 2021
I do not have time to put in order those, so it is a simple list with all I have used in the year 2021 .
Chrome Extensions
- Slides
- Text Mode
- Google Arts & Culture
- Kingsquare HTML Validator
- Docs
- MeasureIt!
- Google Drive
- Image Checker
- RescueTime for Chrome and Chrome OS
- Language Immersion for Chrome
- Web Developer
- Read on reMarkable
- Google Optimize
- Gliffy Diagrams
- Lighthouse
- YouTube
- Minimal New Tab
- Send to Kindle for Google Chrome™
- QR Code
- JSONVue
- Export links of all extensions
- REST Console
- iMacros for Chrome
- Sourcegraph
- Just Read
- Trellists: Trello Lists Master
- Headless Recorder
- Trello
- Dark Mode
- Bookmarks Table
- Google Calendar
- T-boards
- Panic Button
- Sheets
- Postman
- File Icons for GitHub and GitLab
- Close Tabs to Left
- Chrome Remote Desktop
- TheWebMiner Sitemap Generator
- Google Docs Offline
- Microsoft Power Automate
- OneNote Web Clipper
- Open SEO Stats(Formerly: PageRank Status)
- Advanced REST client
- Web Developer Checklist
- Resolution Test
- Placeholdifier
- JavaScript Errors Notifier
- TLDR This – Free automatic text summary tool
- Cisco Webex Extension
- Gestures for Google Chrome™
- Request Maker
- Viewport Resizer – Responsive Testing Tool
- Tag Assistant Legacy (by Google)
- Exploratory Testing Chrome Extension
- Window Resizer
- TrelloExport
- StayFocusd
- mydlink services plugin
- IP Address and Domain Information
- Behind The Overlay
- Timer
- Lazarus: Form Recovery
- Timeline Support
- SelectorGadget
- Ghostery – Privacy Ad Blocker
- Project Naptha
- Selenium IDE
- Google Hangouts
- Office
- Images ON/OFF
- YSlow
- Chrome Web Store Payments
- Buffer
- Microformats
- FoxClocks
- Trello
- Chrome Apps & Extensions Developer Tool
- HTML ASCII Codes
- diagrams.net Desktop
- Gmail
- Google Similar Pages
- Quick Language Switcher
- Neat Bookmarks
- Page One – Banish Multipage Articles
VSCode Extensions
- Angular Language Service
- Debugger for Chrome
- Better Comments
- vscode-base64
- Bookmarks
- Cucumber (Gherkin) Full Support
- TypeScript + Webpack Problem Matchers
- Angular Language Service
- HTML End Tag Labels
- Turbo Console Log
- npm Intellisense
- PostgreSQL
- Excel to Markdown table
- ESLint
- Git History
- XML Tools
- GitLens — Git supercharged
- npm
- Prettier – Code formatter
- Debugger for Firefox
- HTTP Server / HTML Preview
- Auto Close Tag
- Auto Rename Tag
- Better Solarized
- GitHub Copilot
- GitHub Repositories (Insiders)
- CodeQL
- Todo Tree
- Test Explorer UI
- VSCode Dimmer
- REST Client
- Node Dependencies
- Path Autocomplete
- Document This
- Peacock
- C# XML Documentation Comments
- Diff Folders
- Inline Parameters for VSCode
- Git Graph
- DotENV
- MongoDB for VS Code
- Azure Pipelines
- Azure Functions
- Azure Resources
- Docker
- Tye
- C#
- .NET Interactive Notebooks
- Data Workspace
- SQL Server (mssql)
- SQL Database Projects
- Jupyter
- Jupyter Keymap
- Jupyter Notebook Renderers
- Remote – Containers
- Remote – SSH
- Remote – SSH: Editing Configuration Files
- Remote – WSL
- Remote Development
- Azure Account
- PowerShell
- Test Adapter Converter
- Visual Studio Keymap
- TSLint
- Live Share
- Live Share Audio
- Live Share Extension Pack
- Microsoft Office Add-in Debugger
- Vetur
- indent-rainbow
- Version Lens
- Polacode
- Paste JSON as Code
- YAML
- Angular Follow Selector
- Night Owl
- Settings Sync
- Markdown Table
- HTML Preview
- es6-string-html
- vscode-pdf
- Mermaid Editor
- Terminal Here
- Highlight Matching Tag
- vscode-icons
- CodeTour
- GistPad
- GitDoc
- TODO Highlight
- Import Cost
- Better Align
- Markdown PDF
- Markdown All in One
- IntelliSense for CSS class names in HTML
PowerShell Modules
Docker Images
- node:latest
- xabaril_web:latest
- jenkins/jenkins:lts
- mcr.microsoft.com/dotnet/sdk:5.0
- mcr.microsoft.com/mssql/server:2019-latest,mcr.microsoft.com/mssql/server:latest
- rnwood/smtp4dev:latest
- docker.elastic.co/elasticsearch/elasticsearch:7.11.2
- docker.elastic.co/kibana/kibana:7.11.2
- jaegertracing/all-in-one:1.22
And this is my Powershell Profile:
# Install-Module Terminal-Icons
Import-Module -Name Terminal-Icons
Import-Module posh-git
Import-Module oh-my-posh
#Set-PoshPrompt -Theme pararussel
#Set-PoshPrompt -Theme agnosterplus
Set-PoshPrompt -Theme powerlevel10k_lean
# https://ohmyposh.dev/docs/themes
function edit ($file) { & “${env:ProgramFiles}\Notepad++\notepad++.exe” $file }
function explore { “explorer.exe `”$(Get-Location)`”” | Invoke-Expression }
function rdp ($ip) {
Start-Process -FilePath mstsc -ArgumentList “/admin /w:1024 /h:768 /v:$ip”
}
# Install-Module -Name PowerShellGet -RequiredVersion 2.2.5 -Force -AllowClobber
# Install-Module PSReadLine -AllowPrerelease -Force
Import-Module PSReadLine
Set-PSReadLineOption -PredictionSource History
Set-PSReadLineOption -PredictionViewStyle ListView
Set-PSReadLineOption -EditMode Windows
#dotnet tool install –global dotnet-suggest –version 1.1.221601
# dotnet suggest shell start
if (Get-Command “dotnet-suggest” -errorAction SilentlyContinue)
{
$availableToComplete = (dotnet-suggest list) | Out-String
$availableToCompleteArray = $availableToComplete.Split([Environment]::NewLine, [System.StringSplitOptions]::RemoveEmptyEntries)
Register-ArgumentCompleter -Native -CommandName $availableToCompleteArray -ScriptBlock {
param($wordToComplete, $commandAst, $cursorPosition)
$fullpath = (Get-Command $commandAst.CommandElements[0]).Source
$arguments = $commandAst.Extent.ToString().Replace(‘”‘, ‘\”‘)
dotnet-suggest get -e $fullpath –position $cursorPosition — “$arguments” | ForEach-Object {
[System.Management.Automation.CompletionResult]::new($_, $_, ‘ParameterValue’, $_)
}
}
}
else
{
“Unable to provide System.CommandLine tab completion support unless the [dotnet-suggest] tool is first installed.”
“See the following for tool installation: https://www.nuget.org/packages/dotnet-suggest”
}
# PowerShell parameter completion shim for the dotnet CLI
Register-ArgumentCompleter -Native -CommandName dotnet -ScriptBlock {
param($commandName, $wordToComplete, $cursorPosition)
dotnet complete –position $cursorPosition “$wordToComplete” | ForEach-Object {
[System.Management.Automation.CompletionResult]::new($_, $_, ‘ParameterValue’, $_)
}
}
$env:DOTNET_SUGGEST_SCRIPT_VERSION = “1.0.2”
# dotnet suggest script end
And those are my
Apps:
- 7-Zip
- Anydesk
- Azuredatastudio
- Bcompare
- Bluejeans
- Calculator
- Camera – Samsung Android Phone
- Chrome
- Command Prompt
- Db Browser For Sqlite
- Docker Desktop
- Electron
- Facebook For Android
- Facebook Messenger
- Filezilla
- Freecommander
- Github Desktop
- Gmail
- Gmail For Android
- Google Calendar
- Google Documents
- Google Forms
- Google Maps For Android
- Google Presentations
- Google Spreadsheets
- Inetmgr
- Internet Explorer
- Kindle For Android
- Linkedin – Android
- Microsoft Edge
- Microsoft Onedrive
- Microsoft Teams
- Microsoft Word For Tablet
- Microsoftedge
- Mongodbcompass
- Ms Access
- Ms Excel
- Ms Mgmt Console
- Ms Outlook
- Ms Paint
- Ms Terminal Services Client
- Ms Word
- Netflix
- Newtab
- Notepad
- Notepad++
- Nugetpackageexplorer
- Onenote
- Oreilly
- Outlook For Android
- Paintdotnet
- Pbidesktop
- Plex For Android
- Postman
- Powerpoint
- Powershell
- Procexp64
- Quicklook
- Regedit
- Remarkable
- Rstudio
- S Health
- Scnotification
- Screenclippinghost
- Screensketch
- Skype
- Skype For Android
- Slack
- Slack For Android
- Snippingtool
- Sql Server Mgmt Studio
- Starcraft
- Teamviewer
- Teamviewer For Remote Control
- Treesizefree
- Trello For Android
- Uber
- Ubuntu
- Visual Studio
- Visual Studio Code
- Visual Studio Debugger
- Vlc Media Player
- Whatsapp Messenger Android
- Windows Explorer
- Windows Installer
- Windows Problem Reporting
- Windows Store
- Windows Terminal
- Windowslivewriter
- Winmergeu
- Yahoo Mail – Android
- Yourphone
- Youtube For Android
- Zoom
- Zoomit64
And
Sites
- alfadrink.ro
- andrewlock.net
- angular.io
- app.powerbi.com
- bilete.cfrcalatori.ro
- bing.com
- carbon.now.sh
- codeproject.com
- contulmeu.reginamaria.ro
- cp.livehosting.ro
- datatables.net
- dev.to
- devblogs.microsoft.com
- developer.mozilla.org
- developers.google.com
- dilemaveche.ro
- docs.github.com
- docs.microsoft.com
- dontpad.com
- drive.google.com
- elastic.co
- emag.ro
- en.wikipedia.org
- facebook.com
- gist.github.com
- google.com
- google.github.io
- hanselman.com
- homebank.ro
- lichess.org
- linkedin.com
- localhost:5001
- mail.yahoo.com
- material.angular.io
- medium.com
- meet.google.com
- meetup.com
- mermaid-js.github.io
- microservicesportchooser.azurewebsites.net
- microsoft.photos
- mobile – com.limebike
- mobile – eu.hbogo.android
- mobile – ro.ing.mobile.banking.android.activity
- mobile – ro.raiffeisen.smartmobile
- msprogrammer.serviciipeweb.ro
- mvp.microsoft.com
- my.enel.ro
- netcoreblockly.herokuapp.com
- npmjs.com
- nuget.org
- org.videolan.vlc
- outlook.office.com
- papercall.io
- plantuml.com
- portal.azure.com
- quora.com
- rescuetime.com
- sessionize.com
- somee.com
- stackoverflow.com
- tabulator.info
- takeaway.com
- trello.com
- twitter.com
- us10.admin.mailchimp.com
- w3schools.com
- web.whatsapp.com
- youtube.com
NugetPackages
- AdysTech.InfluxDB.Client.Net.Core
- Aistant.DocImport
- AMSWebAPI
- AMS_Base
- AndreasDorfer.BaseTypes
- AndreasDorfer.BaseTypes.Core
- AndreasDorfer.BaseTypes.Generator
- AOPEFCommon
- AOPEFGenerator
- AOPMethodsCommon
- AOPMethodsGenerator
- Apparatus.AOT.Reflection
- appSettingsEditor
- appSettingsEditorAPI
- AspNetCore.HealthChecks.Sqlite
- AspNetCore.HealthChecks.SqlServer
- AspNetCore.HealthChecks.System
- AspNetCore.HealthChecks.UI
- AspNetCore.HealthChecks.UI.Client
- AspNetCore.HealthChecks.UI.Core
- AspNetCore.HealthChecks.UI.InMemory.Storage
- AspNetCore.HealthChecks.Uris
- Autofac
- AutoMapper
- Azure.Core
- Azure.Identity
- Azure.Monitor.OpenTelemetry.Exporter
- Azure.Security.KeyVault.Certificates
- Azure.Security.KeyVault.Secrets
- Azure.Storage.Blobs
- Azure.Storage.Common
- BeaKona.AutoInterfaceGenerator
- Ben.Demystifier
- BenchmarkDotNet
- BenchmarkDotNet.Annotations
- BenchmarkDotNet.Diagnostics.Windows
- BoilerplateFree
- Buildalyzer
- Buildalyzer.Logger
- Buildalyzer.Workspaces
- BuilderGenerator
- Castle.Core
- Cloneable
- CommandLineParser
- ConfigureAwait.Fody
- coveralls.net
- coverlet.collector
- coverlet.console
- coverlet.msbuild
- Cronos
- CSharpToTypeScript.CLITool
- CsvHelper
- Dapper
- Dapper.AOT
- Dapper.Contrib
- DasMulli.DataBuilderGenerator
- DasMulli.DataBuilderGenerator.Attributes
- Dazinator.Extensions.FileProviders
- DBreeze
- DiamondD1_2
- DiffEngine
- DnsClient
- DotBook
- DotLiquid
- dotMorten.OmdGenerator
- dotnet-ef
- dotnet-outdated-tool
- dotnet-project-licenses
- dotnet-repl
- dotnet-reportgenerator-globaltool
- dotnet-sonarscanner
- dotnet-stryker
- dotnet-xunit
- DotNet.Glob
- DotNetAnalyzers.DocumentationAnalyzers
- DotNetAnalyzers.DocumentationAnalyzers.Unstable
- DotNetty.Buffers
- DotNetty.Codecs
- DotNetty.Codecs.Mqtt
- DotNetty.Common
- DotNetty.Handlers
- DotNetty.Transport
- DuckInterface
- Elastic.Apm
- Elastic.Apm.AspNetCore
- Elastic.Apm.Elasticsearch
- Elastic.Apm.EntityFrameworkCore
- Elastic.Apm.Extensions.Hosting
- Elastic.Apm.GrpcClient
- Elastic.Apm.NetCoreAll
- Elastic.Apm.SqlClient
- Elasticsearch.Net
- EmptyFiles
- EWSoftware.SHFB.NETCore
- FileExtension
- FileHelpers
- FirebaseDatabase.net
- Fixie
- Fixie.Console
- FluentAssertions
- FluentAssertions.Json
- FluentEmail.Core
- FluentEmail.Liquid
- FluentEmail.Smtp
- Fluid.Core
- Fody
- GeneratedMapper
- GitHubActionsTestLogger
- Google.Protobuf
- GraphQL
- GraphQL-Parser
- GraphQL.DataLoader
- GraphQL.Server.Core
- GraphQL.Server.Transports.AspNetCore
- GraphQL.Server.Ui.Playground
- Grpc.AspNetCore
- Grpc.AspNetCore.Server
- Grpc.AspNetCore.Server.ClientFactory
- Grpc.Core.Api
- Grpc.Net.Client
- Grpc.Net.ClientFactory
- Grpc.Net.Common
- Grpc.Tools
- Grynwald.ChangeLog
- Grynwald.MdDocs
- GST.Fake.Authentication.JwtBearer
- Hellang.Middleware.ProblemDetails
- HostedPowershell
- HtmlAgilityPack
- HttpClientGenerator
- Iced
- IdentityModel
- IdentityModel.OidcClient
- IdentityServer4
- IdentityServer4.EntityFramework
- IdentityServer4.EntityFramework.Storage
- IdentityServer4.Storage
- igloo15.MarkdownApi.Tool
- Irony.Core
- Jaeger
- Jaeger.Thrift
- Jaeger.Thrift.VendoredThrift
- JsonByExampleGenerator
- KubernetesClient
- Libuv
- LightBDD
- LightBDD.Core
- LightBDD.Framework
- LightBDD.XUnit2
- LiteDB
- LoxSmoke.mddox
- MailKit
- MapTo
- Markdig.Signed
- MarkdownCodeEmbed
- MarkdownSnippets.Tool
- McMaster.NETCore.Plugins
- Microsoft.ApplicationInsights
- Microsoft.ApplicationInsights.AspNetCore
- Microsoft.ApplicationInsights.DependencyCollector
- Microsoft.ApplicationInsights.EventCounterCollector
- Microsoft.ApplicationInsights.PerfCounterCollector
- Microsoft.ApplicationInsights.WindowsServer
- Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel
- Microsoft.ApplicationInsights.WorkerService
- Microsoft.AspNetCore
- Microsoft.AspNetCore.All
- Microsoft.AspNetCore.Antiforgery
- Microsoft.AspNetCore.App.Ref
- Microsoft.AspNetCore.App.Runtime.linux-x64
- Microsoft.AspNetCore.App.Runtime.win-x64
- Microsoft.AspNetCore.App.Runtime.win-x86
- Microsoft.AspNetCore.ApplicationInsights.HostingStartup
- Microsoft.AspNetCore.Authentication
- Microsoft.AspNetCore.Authentication.Abstractions
- Microsoft.AspNetCore.Authentication.Cookies
- Microsoft.AspNetCore.Authentication.Core
- Microsoft.AspNetCore.Authentication.Facebook
- Microsoft.AspNetCore.Authentication.Google
- Microsoft.AspNetCore.Authentication.JwtBearer
- Microsoft.AspNetCore.Authentication.MicrosoftAccount
- Microsoft.AspNetCore.Authentication.Negotiate
- Microsoft.AspNetCore.Authentication.OAuth
- Microsoft.AspNetCore.Authentication.OpenIdConnect
- Microsoft.AspNetCore.Authentication.Twitter
- Microsoft.AspNetCore.Authorization
- Microsoft.AspNetCore.Authorization.Policy
- Microsoft.AspNetCore.AzureAppServices.HostingStartup
- Microsoft.AspNetCore.AzureAppServicesIntegration
- Microsoft.AspNetCore.Components
- Microsoft.AspNetCore.Components.Analyzers
- Microsoft.AspNetCore.Components.Authorization
- Microsoft.AspNetCore.Components.Forms
- Microsoft.AspNetCore.Components.Web
- Microsoft.AspNetCore.Components.WebAssembly
- Microsoft.AspNetCore.Components.WebAssembly.DevServer
- Microsoft.AspNetCore.Components.WebAssembly.Server
- Microsoft.AspNetCore.Connections.Abstractions
- Microsoft.AspNetCore.CookiePolicy
- Microsoft.AspNetCore.Cors
- Microsoft.AspNetCore.Cryptography.Internal
- Microsoft.AspNetCore.Cryptography.KeyDerivation
- Microsoft.AspNetCore.DataProtection
- Microsoft.AspNetCore.DataProtection.Abstractions
- Microsoft.AspNetCore.DataProtection.AzureStorage
- Microsoft.AspNetCore.DataProtection.Extensions
- Microsoft.AspNetCore.Diagnostics
- Microsoft.AspNetCore.Diagnostics.Abstractions
- Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
- Microsoft.AspNetCore.Hosting
- Microsoft.AspNetCore.Hosting.Abstractions
- Microsoft.AspNetCore.Hosting.Server.Abstractions
- Microsoft.AspNetCore.Html.Abstractions
- Microsoft.AspNetCore.Http
- Microsoft.AspNetCore.Http.Abstractions
- Microsoft.AspNetCore.Http.Extensions
- Microsoft.AspNetCore.Http.Features
- Microsoft.AspNetCore.HttpOverrides
- Microsoft.AspNetCore.Identity
- Microsoft.AspNetCore.Identity.EntityFrameworkCore
- Microsoft.AspNetCore.JsonPatch
- Microsoft.AspNetCore.Localization
- Microsoft.AspNetCore.Localization.Routing
- Microsoft.AspNetCore.Metadata
- Microsoft.AspNetCore.MiddlewareAnalysis
- Microsoft.AspNetCore.Mvc
- Microsoft.AspNetCore.Mvc.Abstractions
- Microsoft.AspNetCore.Mvc.ApiExplorer
- Microsoft.AspNetCore.Mvc.Core
- Microsoft.AspNetCore.Mvc.Cors
- Microsoft.AspNetCore.Mvc.DataAnnotations
- Microsoft.AspNetCore.Mvc.Formatters.Json
- Microsoft.AspNetCore.Mvc.Formatters.Xml
- Microsoft.AspNetCore.Mvc.Localization
- Microsoft.AspNetCore.Mvc.NewtonsoftJson
- Microsoft.AspNetCore.Mvc.Razor
- Microsoft.AspNetCore.Mvc.Razor.Extensions
- Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation
- Microsoft.AspNetCore.Mvc.Razor.ViewCompilation
- Microsoft.AspNetCore.Mvc.RazorPages
- Microsoft.AspNetCore.Mvc.TagHelpers
- Microsoft.AspNetCore.Mvc.Testing
- Microsoft.AspNetCore.Mvc.Versioning
- Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer
- Microsoft.AspNetCore.Mvc.ViewFeatures
- Microsoft.AspNetCore.NodeServices
- Microsoft.AspNetCore.OData
- Microsoft.AspNetCore.Owin
- Microsoft.AspNetCore.Razor
- Microsoft.AspNetCore.Razor.Language
- Microsoft.AspNetCore.Razor.Runtime
- Microsoft.AspNetCore.ResponseCaching
- Microsoft.AspNetCore.ResponseCaching.Abstractions
- Microsoft.AspNetCore.ResponseCompression
- Microsoft.AspNetCore.Rewrite
- Microsoft.AspNetCore.Routing
- Microsoft.AspNetCore.Routing.Abstractions
- Microsoft.AspNetCore.Server.HttpSys
- Microsoft.AspNetCore.Server.IISIntegration
- Microsoft.AspNetCore.Server.Kestrel
- Microsoft.AspNetCore.Server.Kestrel.Core
- Microsoft.AspNetCore.Server.Kestrel.Https
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions
- Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv
- Microsoft.AspNetCore.Session
- Microsoft.AspNetCore.SignalR
- Microsoft.AspNetCore.SignalR.Common
- Microsoft.AspNetCore.SignalR.Core
- Microsoft.AspNetCore.Sockets
- Microsoft.AspNetCore.Sockets.Abstractions
- Microsoft.AspNetCore.Sockets.Common.Http
- Microsoft.AspNetCore.Sockets.Http
- Microsoft.AspNetCore.SpaServices
- Microsoft.AspNetCore.StaticFiles
- Microsoft.AspNetCore.TestHost
- Microsoft.AspNetCore.WebSockets
- Microsoft.AspNetCore.WebUtilities
- Microsoft.Azure.Amqp
- Microsoft.Azure.Cosmos
- Microsoft.Azure.Devices.Client
- Microsoft.Azure.Devices.Shared
- Microsoft.Azure.EventHubs
- Microsoft.Azure.EventHubs.Processor
- Microsoft.Bcl.AsyncInterfaces
- Microsoft.Bcl.HashCode
- Microsoft.Build
- Microsoft.Build.Framework
- Microsoft.Build.Tasks.Core
- Microsoft.Build.Tasks.Git
- Microsoft.Build.Utilities.Core
- Microsoft.CodeAnalysis
- Microsoft.CodeAnalysis.Analyzers
- Microsoft.CodeAnalysis.Common
- Microsoft.CodeAnalysis.CSharp
- Microsoft.CodeAnalysis.CSharp.Scripting
- Microsoft.CodeAnalysis.CSharp.Workspaces
- Microsoft.CodeAnalysis.FxCopAnalyzers
- Microsoft.CodeAnalysis.PublicApiAnalyzers
- Microsoft.CodeAnalysis.Razor
- Microsoft.CodeAnalysis.Scripting.Common
- Microsoft.CodeAnalysis.VersionCheckAnalyzer
- Microsoft.CodeAnalysis.VisualBasic
- Microsoft.CodeAnalysis.VisualBasic.Workspaces
- Microsoft.CodeAnalysis.Workspaces.Common
- Microsoft.CodeCoverage
- Microsoft.CodeQuality.Analyzers
- Microsoft.CSharp
- Microsoft.Data.SqlClient
- Microsoft.Data.SqlClient.SNI
- Microsoft.Data.SqlClient.SNI.runtime
- Microsoft.Data.Sqlite
- Microsoft.Data.Sqlite.Core
- Microsoft.Diagnostics.NETCore.Client
- Microsoft.Diagnostics.Runtime
- Microsoft.Diagnostics.Tracing.TraceEvent
- Microsoft.dotnet-interactive
- Microsoft.dotnet-msidentity
- Microsoft.DotNet.Arcade.Sdk
- Microsoft.DotNet.PlatformAbstractions
- Microsoft.EntityFrameworkCore
- Microsoft.EntityFrameworkCore.Abstractions
- Microsoft.EntityFrameworkCore.Analyzers
- Microsoft.EntityFrameworkCore.Design
- Microsoft.EntityFrameworkCore.InMemory
- Microsoft.EntityFrameworkCore.Relational
- Microsoft.EntityFrameworkCore.Relational.Design
- Microsoft.EntityFrameworkCore.Sqlite
- Microsoft.EntityFrameworkCore.Sqlite.Core
- Microsoft.EntityFrameworkCore.Sqlite.Design
- Microsoft.EntityFrameworkCore.SqlServer
- Microsoft.EntityFrameworkCore.Tools
- Microsoft.Extensions.ApiDescription.Server
- Microsoft.Extensions.Caching.Abstractions
- Microsoft.Extensions.Caching.Memory
- Microsoft.Extensions.Caching.Redis
- Microsoft.Extensions.Caching.SqlServer
- Microsoft.Extensions.Configuration
- Microsoft.Extensions.Configuration.Abstractions
- Microsoft.Extensions.Configuration.AzureKeyVault
- Microsoft.Extensions.Configuration.Binder
- Microsoft.Extensions.Configuration.CommandLine
- Microsoft.Extensions.Configuration.EnvironmentVariables
- Microsoft.Extensions.Configuration.FileExtensions
- Microsoft.Extensions.Configuration.Ini
- Microsoft.Extensions.Configuration.Json
- Microsoft.Extensions.Configuration.UserSecrets
- Microsoft.Extensions.Configuration.Xml
- Microsoft.Extensions.DependencyInjection
- Microsoft.Extensions.DependencyInjection.Abstractions
- Microsoft.Extensions.DependencyModel
- Microsoft.Extensions.DiagnosticAdapter
- Microsoft.Extensions.Diagnostics.HealthChecks
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions
- Microsoft.Extensions.Features
- Microsoft.Extensions.FileProviders.Abstractions
- Microsoft.Extensions.FileProviders.Composite
- Microsoft.Extensions.FileProviders.Embedded
- Microsoft.Extensions.FileProviders.Physical
- Microsoft.Extensions.FileSystemGlobbing
- Microsoft.Extensions.HostFactoryResolver.Sources
- Microsoft.Extensions.Hosting
- Microsoft.Extensions.Hosting.Abstractions
- Microsoft.Extensions.Http
- Microsoft.Extensions.Identity.Core
- Microsoft.Extensions.Identity.Stores
- Microsoft.Extensions.Localization
- Microsoft.Extensions.Localization.Abstractions
- Microsoft.Extensions.Logging
- Microsoft.Extensions.Logging.Abstractions
- Microsoft.Extensions.Logging.ApplicationInsights
- Microsoft.Extensions.Logging.AzureAppServices
- Microsoft.Extensions.Logging.Configuration
- Microsoft.Extensions.Logging.Console
- Microsoft.Extensions.Logging.Debug
- Microsoft.Extensions.Logging.EventLog
- Microsoft.Extensions.Logging.EventSource
- Microsoft.Extensions.Logging.TraceSource
- Microsoft.Extensions.Options
- Microsoft.Extensions.Options.ConfigurationExtensions
- Microsoft.Extensions.Primitives
- Microsoft.Extensions.WebEncoders
- Microsoft.Identity.Client
- Microsoft.Identity.Client.Extensions.Msal
- Microsoft.Identity.Web
- Microsoft.IdentityModel.Clients.ActiveDirectory
- Microsoft.IdentityModel.JsonWebTokens
- Microsoft.IdentityModel.Logging
- Microsoft.IdentityModel.Protocols
- Microsoft.IdentityModel.Protocols.OpenIdConnect
- Microsoft.IdentityModel.Tokens
- Microsoft.JSInterop
- Microsoft.JSInterop.WebAssembly
- Microsoft.Management.Infrastructure
- Microsoft.Management.Infrastructure.CimCmdlets
- Microsoft.Management.Infrastructure.Runtime.Unix
- Microsoft.Management.Infrastructure.Runtime.Win
- Microsoft.Net.Compilers.Toolset
- Microsoft.Net.Http.Headers
- Microsoft.NET.StringTools
- Microsoft.NET.Test.Sdk
- Microsoft.NetCore.Analyzers
- Microsoft.NETCore.App
- Microsoft.NETCore.App.Crossgen2.win-x64
- Microsoft.NETCore.App.Host.linux-x64
- Microsoft.NETCore.App.Host.win-x64
- Microsoft.NETCore.App.Ref
- Microsoft.NETCore.App.Runtime.linux-x64
- Microsoft.NETCore.App.Runtime.Mono.browser-wasm
- Microsoft.NETCore.App.Runtime.win-x64
- Microsoft.NETCore.App.Runtime.win-x86
- Microsoft.NETCore.DotNetAppHost
- Microsoft.NETCore.DotNetHost
- Microsoft.NETCore.DotNetHostPolicy
- Microsoft.NETCore.DotNetHostResolver
- Microsoft.NETCore.Jit
- Microsoft.NETCore.Platforms
- Microsoft.NETCore.Runtime.CoreCLR
- Microsoft.NETCore.Targets
- Microsoft.NETCore.Windows.ApiSets
- Microsoft.NetFramework.Analyzers
- Microsoft.NETFramework.ReferenceAssemblies
- Microsoft.NETFramework.ReferenceAssemblies.net452
- Microsoft.NETFramework.ReferenceAssemblies.net46
- Microsoft.NETFramework.ReferenceAssemblies.net461
- Microsoft.OData.Core
- Microsoft.OData.Edm
- Microsoft.OData.ModelBuilder
- Microsoft.OpenApi
- Microsoft.OpenApi.Readers
- Microsoft.Packaging.Tools
- Microsoft.PowerShell.Commands.Diagnostics
- Microsoft.PowerShell.Commands.Management
- Microsoft.PowerShell.Commands.Utility
- Microsoft.PowerShell.ConsoleHost
- Microsoft.PowerShell.CoreCLR.Eventing
- Microsoft.PowerShell.MarkdownRender
- Microsoft.PowerShell.Native
- Microsoft.PowerShell.SDK
- Microsoft.PowerShell.Security
- Microsoft.SourceLink.AzureRepos.Git
- Microsoft.SourceLink.Common
- Microsoft.SourceLink.GitHub
- Microsoft.Spatial
- Microsoft.TestPlatform.ObjectModel
- Microsoft.TestPlatform.TestHost
- Microsoft.UI.Xaml
- Microsoft.VisualBasic
- Microsoft.VisualStudio.Azure.Containers.Tools.Targets
- Microsoft.VisualStudio.Web.BrowserLink
- Microsoft.VisualStudio.Web.CodeGeneration
- Microsoft.VisualStudio.Web.CodeGeneration.Contracts
- Microsoft.VisualStudio.Web.CodeGeneration.Core
- Microsoft.VisualStudio.Web.CodeGeneration.Design
- Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
- Microsoft.VisualStudio.Web.CodeGeneration.Templating
- Microsoft.VisualStudio.Web.CodeGeneration.Tools
- Microsoft.VisualStudio.Web.CodeGeneration.Utils
- Microsoft.VisualStudio.Web.CodeGenerators.Mvc
- Microsoft.VisualStudioEng.MicroBuild.Core
- Microsoft.Web.WebView2
- Microsoft.Web.WebView2.DevToolsProtocolExtension
- Microsoft.Win32.Registry
- Microsoft.Win32.Registry.AccessControl
- Microsoft.Win32.SystemEvents
- Microsoft.Windows.Compatibility
- Microsoft.Windows.ImplementationLibrary
- Microsoft.WindowsDesktop.App.Ref
- Microsoft.WindowsDesktop.App.Runtime.win-x64
- Microsoft.WindowsDesktop.App.Runtime.win-x86
- Microsoft.WSMan.Management
- Microsoft.WSMan.Runtime
- Microsoft.XmlSerializer.Generator
- MimeKit
- MiniRazor
- MinVer
- minver-cli
- Mocklis.MockGenerator
- MockSourceGenerator
- mod_spatialite
- Mongo2Go
- MongoDB.Bson
- MongoDB.Driver
- MongoDB.Driver.Core
- MongoDB.Driver.Core.Extensions.DiagnosticSources
- MongoDB.Driver.Core.Extensions.OpenTelemetry
- MongoDB.Libmongocrypt
- Mono.Cecil
- Moq
- MSBuild.Sdk.Extras
- MSBuild.StructuredLogger
- MsBuildPipeLogger.Server
- MsgPack.Cli
- MSTest.TestAdapter
- MSTest.TestFramework
- MySql.Data
- MySql.Data.EntityFrameworkCore
- MySqlConnector
- MysticMind.PostgresEmbed
- Namotion.Reflection
- nbgv
- Nerdbank.GitVersioning
- NEST
- NETCore.MailKit
- NetCore2Blockly
- NetCore2BlocklyStorage.Sqlite
- NETStandard.Library
- NetTopologySuite
- NetTopologySuite.IO.SpatiaLite
- NetTopologySuite.IO.SqlServerBytes
- Newtonsoft.Json
- Newtonsoft.Json.Bson
- NJsonSchema
- NJsonSchema.CodeGeneration
- NJsonSchema.CodeGeneration.CSharp
- NJsonSchema.Yaml
- NLog
- Npgsql
- Npgsql.EntityFrameworkCore.PostgreSQL
- NPOI
- NServiceBus
- NServiceBus.Extensions.Diagnostics
- NServiceBus.Extensions.Diagnostics.OpenTelemetry
- NServiceBus.Extensions.Hosting
- NServiceBus.Extensions.IntegrationTesting
- NServiceBus.Json
- NServiceBus.MicrosoftLogging
- NServiceBus.MicrosoftLogging.Hosting
- NServiceBus.RabbitMQ
- NServiceBus.SagaAudit
- NSwag.Annotations
- NSwag.AspNetCore
- NSwag.Core
- NSwag.Core.Yaml
- NSwag.Generation
- NSwag.Generation.AspNetCore
- NuGet.Frameworks
- NuGetizer
- Nullable
- NUnit
- NUnit3TestAdapter
- OdataToEntity
- OdataToEntity.AspNetCore
- OdataToEntity.EfCore
- OdataToEntity.EfCore.DynamicDataContext
- OpenTelemetry
- OpenTelemetry.Adapter.AspNetCore
- OpenTelemetry.Api
- OpenTelemetry.Contrib.Instrumentation.EntityFrameworkCore
- OpenTelemetry.Exporter.Console
- OpenTelemetry.Exporter.Jaeger
- OpenTelemetry.Exporter.Zipkin
- OpenTelemetry.Extensions.Hosting
- OpenTelemetry.Hosting
- OpenTelemetry.Instrumentation.AspNetCore
- OpenTelemetry.Instrumentation.Http
- OpenTelemetry.Instrumentation.SqlClient
- OpenTK
- OpenTK.GLControl
- OpenTracing
- PartiallyApplied
- Perfolizer
- Polly
- Portable.BouncyCastle
- PostgreSql.Binaries.Lite
- PowerShell
- QueryGenerator
- RabbitMQ.Client
- RavenDB.Client
- RavenDB.Database
- release-notes
- Remotion.Linq
- repo-version
- RestSharp
- Rnwood.Smtp4dev
- RSCG_AMS
- RSCG_Static
- RSCG_TimeBombComment
- runtime.any.System.Collections
- runtime.any.System.Diagnostics.Tools
- runtime.any.System.Diagnostics.Tracing
- runtime.any.System.Globalization
- runtime.any.System.Globalization.Calendars
- runtime.any.System.IO
- runtime.any.System.Reflection
- runtime.any.System.Reflection.Extensions
- runtime.any.System.Reflection.Primitives
- runtime.any.System.Resources.ResourceManager
- runtime.any.System.Runtime
- runtime.any.System.Runtime.Handles
- runtime.any.System.Runtime.InteropServices
- runtime.any.System.Text.Encoding
- runtime.any.System.Text.Encoding.Extensions
- runtime.any.System.Threading.Tasks
- runtime.any.System.Threading.Timer
- runtime.aot.System.Globalization
- runtime.aot.System.IO
- runtime.aot.System.Reflection
- runtime.aot.System.Reflection.Primitives
- runtime.aot.System.Resources.ResourceManager
- runtime.aot.System.Runtime
- runtime.aot.System.Text.Encoding
- runtime.aot.System.Text.Encoding.Extensions
- runtime.aot.System.Threading.Tasks
- runtime.linux-arm.runtime.native.System.IO.Ports
- runtime.linux-arm64.runtime.native.System.IO.Ports
- runtime.linux-x64.runtime.native.System.IO.Ports
- runtime.native.System.Data.SqlClient.sni
- runtime.native.System.IO.Ports
- runtime.native.System.Net.Security
- runtime.osx-x64.Microsoft.NETCore.App
- runtime.osx-x64.Microsoft.NETCore.DotNetAppHost
- runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy
- runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver
- runtime.osx-x64.runtime.native.System.IO.Ports
- runtime.ubuntu.14.04-x64.runtime.native.System
- runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression
- runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http
- runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security
- runtime.win-x64.Microsoft.NETCore.App
- runtime.win-x64.Microsoft.NETCore.DotNetAppHost
- runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy
- runtime.win-x64.Microsoft.NETCore.DotNetHostResolver
- runtime.win-x86.Microsoft.NETCore.App
- runtime.win-x86.Microsoft.NETCore.DotNetAppHost
- runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy
- runtime.win-x86.Microsoft.NETCore.DotNetHostResolver
- runtime.win.Microsoft.Win32.Primitives
- runtime.win.System.Console
- runtime.win.System.Diagnostics.Debug
- runtime.win.System.IO.FileSystem
- runtime.win.System.Net.Primitives
- runtime.win.System.Net.Sockets
- runtime.win.System.Runtime.Extensions
- runtime.win7-x64.runtime.native.System.Data.SqlClient.sni
- runtime.win7-x86.runtime.native.System.Data.SqlClient.sni
- Scriban
- Serilog
- Serilog.Enrichers.Thread
- Serilog.Extensions.Logging
- Serilog.Sinks.Async
- Serilog.Sinks.Console
- Serilog.Sinks.File
- Serilog.Sinks.Literate
- Serilog.Sinks.RollingFile
- SharpCompress
- SharpYaml
- SharpZipLib
- Shouldly
- SixLabors.Core
- SixLabors.Fonts
- SixLabors.ImageSharp
- SixLabors.ImageSharp.Drawing
- SixLabors.Shapes
- SkiaSharp
- SkiaSharp.Views
- SkiaSharp.Views.Forms
- SkinnyControllersCommon
- SkinnyControllersGenerator
- SmallSharp
- SourceInject
- SpeedyGenerators
- sqlite-net-pcl
- SQLitePCLRaw.bundle_e_sqlcipher
- SQLitePCLRaw.bundle_e_sqlite3
- SQLitePCLRaw.bundle_green
- SQLitePCLRaw.bundle_sqlite3
- SQLitePCLRaw.bundle_winsqlite3
- SQLitePCLRaw.core
- SQLitePCLRaw.lib.e_sqlcipher
- SQLitePCLRaw.lib.e_sqlite3
- SQLitePCLRaw.lib.e_sqlite3.linux
- SQLitePCLRaw.lib.e_sqlite3.osx
- SQLitePCLRaw.lib.e_sqlite3.v110_xp
- SQLitePCLRaw.provider.dynamic_cdecl
- SQLitePCLRaw.provider.e_sqlcipher
- SQLitePCLRaw.provider.e_sqlite3
- SQLitePCLRaw.provider.e_sqlite3.netstandard11
- SQLitePCLRaw.provider.sqlite3
- SQLitePCLRaw.provider.winsqlite3
- StructRecordGenerator
- StyleCop.Analyzers
- Swashbuckle.AspNetCore
- Swashbuckle.AspNetCore.Swagger
- Swashbuckle.AspNetCore.SwaggerGen
- Swashbuckle.AspNetCore.SwaggerUI
- System.Binary
- System.Buffers.Primitives
- System.CodeDom
- System.Collections.Immutable
- System.CommandLine
- System.ComponentModel.Annotations
- System.ComponentModel.Composition
- System.ComponentModel.Composition.Registration
- System.ComponentModel.EventBasedAsync
- System.Configuration.ConfigurationManager
- System.Console
- System.Data.Common
- System.Data.DataSetExtensions
- System.Data.Odbc
- System.Data.OleDb
- System.Data.SqlClient
- System.Data.SQLite.Core
- System.Diagnostics.DiagnosticSource
- System.Diagnostics.EventLog
- System.Diagnostics.PerformanceCounter
- System.Diagnostics.StackTrace
- System.DirectoryServices
- System.DirectoryServices.AccountManagement
- System.DirectoryServices.Protocols
- System.Drawing.Common
- System.Formats.Asn1
- System.Globalization
- System.IdentityModel.Tokens.Jwt
- System.Interactive.Async
- System.IO
- System.IO.Abstractions
- System.IO.Abstractions.TestingHelpers
- System.IO.FileSystem.AccessControl
- System.IO.FileSystem.Primitives
- System.IO.FileSystem.Watcher
- System.IO.MemoryMappedFiles
- System.IO.Packaging
- System.IO.Pipelines
- System.IO.Pipes
- System.IO.Pipes.AccessControl
- System.IO.Ports
- System.IO.UnmanagedMemoryStream
- System.Linq.Async
- System.Linq.Queryable
- System.Management
- System.Management.Automation
- System.Memory
- System.Memory.Data
- System.Net.Http
- System.Net.Http.Json
- System.Net.Http.WinHttpHandler
- System.Net.NetworkInformation
- System.Net.Requests
- System.Net.Security
- System.Net.WebHeaderCollection
- System.Net.WebSockets
- System.Net.WebSockets.Client
- System.Numerics.Vectors
- System.Private.ServiceModel
- System.Private.Uri
- System.Reactive
- System.Reactive.Core
- System.Reactive.PlatformServices
- System.Reflection
- System.Reflection.Context
- System.Reflection.DispatchProxy
- System.Reflection.Emit
- System.Reflection.Emit.ILGeneration
- System.Reflection.Emit.Lightweight
- System.Reflection.Metadata
- System.Reflection.Primitives
- System.Resources.Extensions
- System.Resources.ResourceManager
- System.Runtime
- System.Runtime.Caching
- System.Runtime.CompilerServices.Unsafe
- System.Runtime.InteropServices.RuntimeInformation
- System.Runtime.Loader
- System.Security.AccessControl
- System.Security.Cryptography.Cng
- System.Security.Cryptography.Pkcs
- System.Security.Cryptography.ProtectedData
- System.Security.Cryptography.Xml
- System.Security.Permissions
- System.Security.Principal.Windows
- System.Security.SecureString
- System.ServiceModel.Duplex
- System.ServiceModel.Http
- System.ServiceModel.NetTcp
- System.ServiceModel.Primitives
- System.ServiceModel.Security
- System.ServiceModel.Syndication
- System.ServiceProcess.ServiceController
- System.Text.Encoding
- System.Text.Encoding.CodePages
- System.Text.Encoding.Extensions
- System.Text.Encodings.Web
- System.Text.Json
- System.Threading
- System.Threading.AccessControl
- System.Threading.Channels
- System.Threading.Overlapped
- System.Threading.Tasks
- System.Threading.Tasks.Channels
- System.Threading.Tasks.Dataflow
- System.Threading.Tasks.Extensions
- System.Threading.Tasks.Parallel
- System.ValueTuple
- System.Windows.Extensions
- Teronis.MSBuild.Packaging.ProjectBuildInPackage
- Thanks.NET
- ThisAssembly
- ThisAssembly.AssemblyInfo
- ThisAssembly.Constants
- ThisAssembly.Metadata
- ThisAssembly.Prerequisites
- ThisAssembly.Project
- ThisAssembly.Strings
- TimeZoneConverter
- Tizen.NET
- Tizen.NET.API4
- Tizen.NET.API6
- Tizen.NET.Sdk
- Transplator
- Ubiety.VersionIt
- Vaeyori.ConventionalCommitChangelogGenerator
- Validation
- WindowsAzure.Storage
- Xamarin.AndroidX.Activity
- Xamarin.AndroidX.Annotation
- Xamarin.AndroidX.Annotation.Experimental
- Xamarin.AndroidX.AppCompat
- Xamarin.AndroidX.AppCompat.AppCompatResources
- Xamarin.AndroidX.Arch.Core.Common
- Xamarin.AndroidX.Arch.Core.Runtime
- Xamarin.AndroidX.AsyncLayoutInflater
- Xamarin.AndroidX.Browser
- Xamarin.AndroidX.CardView
- Xamarin.AndroidX.Collection
- Xamarin.AndroidX.Concurrent.Futures
- Xamarin.AndroidX.ConstraintLayout
- Xamarin.AndroidX.ConstraintLayout.Core
- Xamarin.AndroidX.CoordinatorLayout
- Xamarin.AndroidX.Core
- Xamarin.AndroidX.CursorAdapter
- Xamarin.AndroidX.CustomView
- Xamarin.AndroidX.DocumentFile
- Xamarin.AndroidX.DrawerLayout
- Xamarin.AndroidX.DynamicAnimation
- Xamarin.AndroidX.Fragment
- Xamarin.AndroidX.Interpolator
- Xamarin.AndroidX.Legacy.Support.Core.UI
- Xamarin.AndroidX.Legacy.Support.Core.Utils
- Xamarin.AndroidX.Legacy.Support.V4
- Xamarin.AndroidX.Lifecycle.Common
- Xamarin.AndroidX.Lifecycle.LiveData
- Xamarin.AndroidX.Lifecycle.LiveData.Core
- Xamarin.AndroidX.Lifecycle.Runtime
- Xamarin.AndroidX.Lifecycle.ViewModel
- Xamarin.AndroidX.Lifecycle.ViewModelSavedState
- Xamarin.AndroidX.Loader
- Xamarin.AndroidX.LocalBroadcastManager
- Xamarin.AndroidX.Media
- Xamarin.AndroidX.Migration
- Xamarin.AndroidX.MultiDex
- Xamarin.AndroidX.Navigation.Common
- Xamarin.AndroidX.Navigation.Runtime
- Xamarin.AndroidX.Navigation.UI
- Xamarin.AndroidX.Preference
- Xamarin.AndroidX.Print
- Xamarin.AndroidX.RecyclerView
- Xamarin.AndroidX.SavedState
- Xamarin.AndroidX.SlidingPaneLayout
- Xamarin.AndroidX.SwipeRefreshLayout
- Xamarin.AndroidX.Tracing.Tracing
- Xamarin.AndroidX.Transition
- Xamarin.AndroidX.VectorDrawable
- Xamarin.AndroidX.VectorDrawable.Animated
- Xamarin.AndroidX.VersionedParcelable
- Xamarin.AndroidX.ViewPager
- Xamarin.AndroidX.ViewPager2
- Xamarin.Essentials
- Xamarin.Forms
- Xamarin.Forms.DualScreen
- Xamarin.Forms.PancakeView
- Xamarin.Forms.Platform.WPF
- Xamarin.Google.Android.Material
- xmldocmd
- xunit
- xunit-cli
- xunit.abstractions
- xunit.analyzers
- xunit.assert
- xunit.core
- xunit.extensibility.core
- xunit.extensibility.execution
- xunit.runner.console
- xunit.runner.visualstudio
- XunitContext
- YamlDotNet
NPM packages
- |@ampproject/remapping
- @ampproject/remapping
- @angular-devkit/architect
- @angular-devkit/build-angular
- @angular-devkit/build-webpack
- @angular-devkit/core
- @angular-devkit/schematics
- @angular/animations
- @angular/cdk
- @angular/cli
- @angular/common
- @angular/compiler-cli
- @angular/compiler
- @angular/core
- @angular/forms
- @angular/material
- @angular/platform-browser-dynamic
- @angular/platform-browser
- @angular/router
- @api-platform/api-doc-parser
- @apidevtools/json-schema-ref-parser
- @apidevtools/openapi-schemas
- @apidevtools/swagger-methods
- @apidevtools/swagger-parser
- @assemblyscript/loader
- @babel/code-frame
- @babel/compat-data
- @babel/core
- @babel/generator
- @babel/helper-annotate-as-pure
- @babel/helper-builder-binary-assignment-operator-visitor
- @babel/helper-compilation-targets
- @babel/helper-create-class-features-plugin
- @babel/helper-create-regexp-features-plugin
- @babel/helper-define-polyfill-provider
- @babel/helper-explode-assignable-expression
- @babel/helper-function-name
- @babel/helper-get-function-arity
- @babel/helper-hoist-variables
- @babel/helper-member-expression-to-functions
- @babel/helper-module-imports
- @babel/helper-module-transforms
- @babel/helper-optimise-call-expression
- @babel/helper-plugin-utils
- @babel/helper-remap-async-to-generator
- @babel/helper-replace-supers
- @babel/helper-simple-access
- @babel/helper-skip-transparent-expression-wrappers
- @babel/helper-split-export-declaration
- @babel/helper-validator-identifier
- @babel/helper-validator-option
- @babel/helper-wrap-function
- @babel/helpers
- @babel/highlight
- @babel/parser
- @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression
- @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining
- @babel/plugin-proposal-async-generator-functions
- @babel/plugin-proposal-class-properties
- @babel/plugin-proposal-class-static-block
- @babel/plugin-proposal-dynamic-import
- @babel/plugin-proposal-export-namespace-from
- @babel/plugin-proposal-json-strings
- @babel/plugin-proposal-logical-assignment-operators
- @babel/plugin-proposal-nullish-coalescing-operator
- @babel/plugin-proposal-numeric-separator
- @babel/plugin-proposal-object-rest-spread
- @babel/plugin-proposal-optional-catch-binding
- @babel/plugin-proposal-optional-chaining
- @babel/plugin-proposal-private-methods
- @babel/plugin-proposal-private-property-in-object
- @babel/plugin-proposal-unicode-property-regex
- @babel/plugin-syntax-async-generators
- @babel/plugin-syntax-class-properties
- @babel/plugin-syntax-class-static-block
- @babel/plugin-syntax-dynamic-import
- @babel/plugin-syntax-export-namespace-from
- @babel/plugin-syntax-json-strings
- @babel/plugin-syntax-logical-assignment-operators
- @babel/plugin-syntax-nullish-coalescing-operator
- @babel/plugin-syntax-numeric-separator
- @babel/plugin-syntax-object-rest-spread
- @babel/plugin-syntax-optional-catch-binding
- @babel/plugin-syntax-optional-chaining
- @babel/plugin-syntax-private-property-in-object
- @babel/plugin-syntax-top-level-await
- @babel/plugin-transform-arrow-functions
- @babel/plugin-transform-async-to-generator
- @babel/plugin-transform-block-scoped-functions
- @babel/plugin-transform-block-scoping
- @babel/plugin-transform-classes
- @babel/plugin-transform-computed-properties
- @babel/plugin-transform-destructuring
- @babel/plugin-transform-dotall-regex
- @babel/plugin-transform-duplicate-keys
- @babel/plugin-transform-exponentiation-operator
- @babel/plugin-transform-for-of
- @babel/plugin-transform-function-name
- @babel/plugin-transform-literals
- @babel/plugin-transform-member-expression-literals
- @babel/plugin-transform-modules-amd
- @babel/plugin-transform-modules-commonjs
- @babel/plugin-transform-modules-systemjs
- @babel/plugin-transform-modules-umd
- @babel/plugin-transform-named-capturing-groups-regex
- @babel/plugin-transform-new-target
- @babel/plugin-transform-object-super
- @babel/plugin-transform-parameters
- @babel/plugin-transform-property-literals
- @babel/plugin-transform-regenerator
- @babel/plugin-transform-reserved-words
- @babel/plugin-transform-runtime
- @babel/plugin-transform-shorthand-properties
- @babel/plugin-transform-spread
- @babel/plugin-transform-sticky-regex
- @babel/plugin-transform-template-literals
- @babel/plugin-transform-typeof-symbol
- @babel/plugin-transform-unicode-escapes
- @babel/plugin-transform-unicode-regex
- @babel/preset-env
- @babel/preset-modules
- @babel/runtime-corejs3
- @babel/runtime
- @babel/template
- @babel/traverse
- @babel/types
- @blockly/workspace-content-highlight
- @csstools/convert-colors
- @discoveryjs/json-ext
- @gar/promisify
- @istanbuljs/load-nyc-config
- @istanbuljs/schema
- @jridgewell/resolve-uri
- @jsdevtools/ono
- @ngtools/webpack
- @nodelib/fs.scandir
- @nodelib/fs.stat
- @nodelib/fs.walk
- @npmcli/fs
- @npmcli/git
- @npmcli/installed-package-contents
- @npmcli/move-file
- @npmcli/node-gyp
- @npmcli/promise-spawn
- @npmcli/run-script
- @schematics/angular
- @tootallnate/once
- @types/component-emitter
- @types/cookie
- @types/cors
- @types/eslint-scope
- @types/eslint
- @types/estree
- @types/http-proxy
- @types/intro.js
- @types/jasmine
- @types/json-schema
- @types/node
- @types/parse-json
- @types/retry
- @types/tabulator-tables
- @webassemblyjs/ast
- @webassemblyjs/floating-point-hex-parser
- @webassemblyjs/helper-api-error
- @webassemblyjs/helper-buffer
- @webassemblyjs/helper-numbers
- @webassemblyjs/helper-wasm-bytecode
- @webassemblyjs/helper-wasm-section
- @webassemblyjs/ieee754
- @webassemblyjs/leb128
- @webassemblyjs/utf8
- @webassemblyjs/wasm-edit
- @webassemblyjs/wasm-gen
- @webassemblyjs/wasm-opt
- @webassemblyjs/wasm-parser
- @webassemblyjs/wast-printer
- @xtuc/ieee754
- @xtuc/long
- @yarnpkg/lockfile
- abab
- abbrev
- accepts
- acorn-globals
- acorn-import-assertions
- acorn-walk
- acorn
- adjust-sourcemap-loader
- agent-base
- agentkeepalive
- aggregate-error
- ajv-formats
- ajv-keywords
- ajv
- ansi-colors
- ansi-escapes
- ansi-html-community
- ansi-regex
- ansi-styles
- anymatch
- aproba
- are-we-there-yet
- argparse
- array-equal
- array-flatten
- array-union
- asn1
- assert-plus
- async
- asynckit
- atob
- autoprefixer
- aws-sign2
- aws4
- babel-loader
- babel-plugin-dynamic-import-node
- babel-plugin-istanbul
- babel-plugin-polyfill-corejs2
- babel-plugin-polyfill-corejs3
- babel-plugin-polyfill-regenerator
- balanced-match
- base64-arraybuffer
- base64-js
- base64id
- batch
- bcrypt-pbkdf
- big.js
- binary-extensions
- bl
- blockly
- body-parser
- bonjour
- boolbase
- brace-expansion
- braces
- browser-process-hrtime
- browserslist
- btoa
- buffer-from
- buffer-indexof
- buffer
- builtins
- bytes
- cacache
- call-bind
- call-me-maybe
- callsites
- camelcase
- caniuse-lite
- canonical-path
- canonicalize
- caseless
- chalk
- chardet
- chart.js
- chokidar
- chownr
- chrome-trace-event
- circular-dependency-plugin
- classlist-polyfill
- clean-stack
- cli-cursor
- cli-spinners
- cli-width
- cliui
- clone-deep
- clone
- code-point-at
- color-convert
- color-name
- color-support
- colorette
- colors
- combined-stream
- commander
- commondir
- component-emitter
- compressible
- compression
- concat-map
- connect-history-api-fallback
- connect
- console-control-strings
- content-disposition
- content-type
- convert-source-map
- cookie-signature
- cookie
- copy-anything
- copy-webpack-plugin
- core-js-compat
- core-js-pure
- core-js
- core-util-is
- cors
- cosmiconfig
- critters
- cross-fetch
- cross-spawn
- css-blank-pseudo
- css-has-pseudo
- css-loader
- css-prefers-color-scheme
- css-select
- css-what
- css
- cssdb
- cssesc
- cssom
- cssstyle
- custom-event
- dashdash
- data-urls
- date-format
- debug
- decode-uri-component
- deep-clone-simple
- deep-equal
- deep-extend
- deep-is
- default-gateway
- defaults
- define-lazy-prop
- define-properties
- del
- delayed-stream
- delegates
- depd
- dependency-graph
- destroy
- detect-node
- di
- dir-glob
- dns-equal
- dns-packet
- dns-txt
- dom-serialize
- dom-serializer
- domelementtype
- domexception
- domhandler
- domify
- domutils
- ecc-jsbn
- ee-first
- electron-to-chromium
- emoji-regex
- emojis-list
- encodeurl
- encoding
- engine.io-parser
- engine.io
- enhanced-resolve
- ent
- entities
- env-paths
- err-code
- errno
- error-ex
- es-abstract
- es-module-lexer
- es-to-primitive
- es6-object-assign
- esbuild-wasm
- esbuild-windows-64
- esbuild
- escalade
- escape-html
- escape-string-regexp
- escodegen
- eslint-scope
- esprima
- esrecurse
- estraverse
- esutils
- etag
- eventemitter-asyncresource
- eventemitter3
- events
- execa
- express
- extend
- external-editor
- extsprintf
- fast-deep-equal
- fast-glob
- fast-json-patch
- fast-json-stable-stringify
- fast-levenshtein
- fastq
- faye-websocket
- figures
- file-saver
- fill-range
- finalhandler
- find-cache-dir
- find-up
- flatted
- flatten
- follow-redirects
- forever-agent
- form-data-encoder
- form-data
- form-serialize
- formdata-node
- forwarded
- fresh
- fs-extra
- fs-minipass
- fs-monkey
- fs.realpath
- function-bind
- gauge
- gensync
- get-caller-file
- get-intrinsic
- get-package-type
- get-stream
- get-symbol-description
- getpass
- glob-parent
- glob-to-regexp
- glob
- globals
- globby
- graceful-fs
- graphql
- handle-thing
- har-schema
- har-validator
- has-bigints
- has-flag
- has-symbols
- has-tostringtag
- has-unicode
- has
- hdr-histogram-js
- hdr-histogram-percentiles-obj
- hosted-git-info
- hpack.js
- html-encoding-sniffer
- html-entities
- html-escaper
- http-cache-semantics
- http-deceiver
- http-errors
- http-parser-js
- http-proxy-agent
- http-proxy-middleware
- http-proxy
- http-signature
- https-proxy-agent
- human-signals
- humanize-ms
- iconv-lite
- icss-utils
- ieee754
- ignore-walk
- ignore
- image-size
- immutable
- import-fresh
- imurmurhash
- indent-string
- indexes-of
- infer-owner
- inflight
- inherits
- ini
- inquirer
- install
- internal-ip
- internal-slot
- intro.js
- ip-regex
- ip
- ipaddr.js
- is-arguments
- is-arrayish
- is-bigint
- is-binary-path
- is-boolean-object
- is-callable
- is-core-module
- is-date-object
- is-docker
- is-extglob
- is-fullwidth-code-point
- is-glob
- is-interactive
- is-ip
- is-lambda
- is-negative-zero
- is-number-object
- is-number
- is-path-cwd
- is-path-inside
- is-plain-obj
- is-plain-object
- is-regex
- is-shared-array-buffer
- is-stream
- is-string
- is-symbol
- is-typedarray
- is-unicode-supported
- is-weakref
- is-what
- is-wsl
- isarray
- isbinaryfile
- isexe
- isobject
- isstream
- istanbul-lib-coverage
- istanbul-lib-instrument
- istanbul-lib-report
- istanbul-lib-source-maps
- istanbul-reports
- jasmine-core
- jest-worker
- js-interpreter
- js-tokens
- js-yaml
- jsbn
- jsdom
- jsesc
- json-parse-better-errors
- json-parse-even-better-errors
- json-schema-traverse
- json-schema
- json-stringify-safe
- json5
- jsonc-parser
- jsonfile
- jsonld
- jsonparse
- jsprim
- karma-chrome-launcher
- karma-coverage
- karma-jasmine-html-reporter
- karma-jasmine
- karma-source-map-support
- karma
- kind-of
- klona
- less-loader
- less
- levn
- license-webpack-plugin
- lines-and-columns
- loader-runner
- loader-utils
- locate-path
- lodash.debounce
- lodash.get
- lodash.isequal
- lodash.sortby
- lodash
- log-symbols
- log4js
- lru-cache
- magic-string
- make-dir
- make-fetch-happen
- media-typer
- memfs
- merge-descriptors
- merge-stream
- merge2
- methods
- micromatch
- mime-db
- mime-types
- mime
- mimic-fn
- mini-css-extract-plugin
- minimalistic-assert
- minimatch
- minimist
- minipass-collect
- minipass-fetch
- minipass-flush
- minipass-json-stream
- minipass-pipeline
- minipass-sized
- minipass
- minizlib
- mkdirp
- monaco-editor
- ms
- multicast-dns-service-types
- multicast-dns
- mute-stream
- nanoid
- needle
- negotiator
- neo-async
- ngx-monaco-editor
- node-addon-api
- node-domexception
- node-fetch
- node-forge
- node-gyp-build
- node-gyp
- node-releases
- nopt
- normalize-path
- normalize-range
- npm-bundled
- npm-install-checks
- npm-normalize-package-bin
- npm-package-arg
- npm-packlist
- npm-pick-manifest
- npm-registry-fetch
- npm-run-path
- npm
- npmlog
- nth-check
- num2fraction
- number-is-nan
- nwsapi
- oauth-sign
- object-assign
- object-inspect
- object-is
- object-keys
- object.assign
- object.fromentries
- obuf
- on-finished
- on-headers
- once
- onetime
- open
- openapi-types
- optionator
- ora
- os-tmpdir
- p-event
- p-finally
- p-limit
- p-locate
- p-map
- p-retry
- p-timeout
- p-try
- pacote
- pako
- parent-module
- parse-json
- parse-node-version
- parse5-html-rewriting-stream
- parse5-htmlparser2-tree-adapter
- parse5-sax-parser
- parse5
- parseurl
- path-exists
- path-is-absolute
- path-key
- path-parse
- path-to-regexp
- path-type
- performance-now
- picocolors
- picomatch
- pify
- piscina
- pkg-dir
- pn
- portfinder
- postcss-attribute-case-insensitive
- postcss-color-functional-notation
- postcss-color-gray
- postcss-color-hex-alpha
- postcss-color-mod-function
- postcss-color-rebeccapurple
- postcss-custom-media
- postcss-custom-properties
- postcss-custom-selectors
- postcss-dir-pseudo-class
- postcss-double-position-gradients
- postcss-env-function
- postcss-focus-visible
- postcss-focus-within
- postcss-font-variant
- postcss-gap-properties
- postcss-image-set-function
- postcss-import
- postcss-initial
- postcss-lab-function
- postcss-loader
- postcss-logical
- postcss-media-minmax
- postcss-modules-extract-imports
- postcss-modules-local-by-default
- postcss-modules-scope
- postcss-modules-values
- postcss-nesting
- postcss-overflow-shorthand
- postcss-page-break
- postcss-place
- postcss-preset-env
- postcss-pseudo-class-any-link
- postcss-replace-overflow-wrap
- postcss-selector-matches
- postcss-selector-not
- postcss-selector-parser
- postcss-value-parser
- postcss-values-parser
- postcss
- prelude-ls
- pretty-bytes
- process-nextick-args
- promise-inflight
- promise-retry
- proxy-addr
- prr
- psl
- punycode
- qjobs
- qs
- querystring
- queue-microtask
- randombytes
- range-parser
- raw-body
- rdf-canonize
- read-cache
- read-package-json-fast
- readable-stream
- readdirp
- reflect-metadata
- regenerate-unicode-properties
- regenerate
- regenerator-runtime
- regenerator-transform
- regex-parser
- regexp.prototype.flags
- regexpu-core
- regjsgen
- regjsparser
- request-promise-core
- request-promise-native
- request
- require-directory
- require-from-string
- requires-port
- resolve-from
- resolve-url-loader
- resolve
- restore-cursor
- retry
- reusify
- rfdc
- rimraf
- run-async
- run-parallel
- rxjs
- safe-buffer
- safer-buffer
- sass-loader
- sass
- sax
- saxes
- schema-utils
- select-hose
- selfsigned
- semver
- send
- serialize-javascript
- serve-index
- serve-static
- set-blocking
- setimmediate
- setprototypeof
- shallow-clone
- shebang-command
- shebang-regex
- side-channel
- signal-exit
- slash
- smart-buffer
- socket.io-adapter
- socket.io-parser
- socket.io
- sockjs
- socks-proxy-agent
- socks
- source-map-js
- source-map-loader
- source-map-resolve
- source-map-support
- source-map
- sourcemap-codec
- spdy-transport
- spdy
- sprintf-js
- sshpk
- ssri
- statuses
- stealthy-require
- streamroller
- string_decoder
- string-width
- string.prototype.trimend
- string.prototype.trimstart
- strip-ansi
- strip-final-newline
- stylus-loader
- stylus
- supports-color
- swagger-client
- swagger-parser
- symbol-observable
- symbol-tree
- tabulator-tables
- tapable
- tar
- terser-webpack-plugin
- terser
- test-exclude
- text-table
- through
- thunky
- tmp
- to-fast-properties
- to-regex-range
- toidentifier
- tough-cookie
- tr46
- traverse
- tree-kill
- tslib
- tunnel-agent
- tweetnacl
- type-check
- type-fest
- type-is
- typed-assert
- typescript
- ua-parser-js
- unbox-primitive
- unicode-canonical-property-names-ecmascript
- unicode-match-property-ecmascript
- unicode-match-property-value-ecmascript
- unicode-property-aliases-ecmascript
- uniq
- unique-filename
- unique-slug
- universalify
- unpipe
- uri-js
- url
- util-deprecate
- utils-merge
- uuid
- validate-npm-package-name
- validator
- vary
- verror
- vex-dialog
- vex-js
- vex
- vm
- void-elements
- w3c-hr-time
- w3c-xmlserializer
- watchpack
- wbuf
- wcwidth
- web-streams-polyfill
- webidl-conversions
- webpack-dev-middleware
- webpack-dev-server
- webpack-merge
- webpack-sources
- webpack-subresource-integrity
- webpack
- websocket-driver
- websocket-extensions
- whatwg-encoding
- whatwg-mimetype
- whatwg-url
- which-boxed-primitive
- which
- wide-align
- wildcard
- word-wrap
- wrap-ansi
- wrappy
- ws
- xml-name-validator
- xmlchars
- xmldom
- y18n
- yallist
- yaml
- yargs-parser
- yargs
- yocto-queue
- z-schema
- zone.js
#VALUE!
Leave a Reply