├── .dockerignore ├── .gitignore ├── .prettierignore ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── README_ja.md ├── README_pack.md ├── gen-packageMetadata.sh ├── images ├── nuget-server-120.png ├── nuget-server-1555.png ├── nuget-server-ss-1.png ├── nuget-server-ss-2.png ├── nuget-server-ss-3.png ├── nuget-server-ss-4.png └── nuget-server-ss-5.png ├── package.json ├── src ├── authInit.ts ├── cli.ts ├── generated │ ├── .gitignore │ ├── messages.ts │ └── packageMetadata.d.ts ├── importPackages.ts ├── index.ts ├── logger.ts ├── middleware │ └── fastifyAuth.ts ├── plugins │ └── vite-plugin-fastify.ts ├── routes │ ├── api │ │ ├── publish │ │ │ └── index.ts │ │ └── ui │ │ │ └── index.ts │ └── v3 │ │ └── index.ts ├── server.ts ├── services │ ├── authFailureTracker.ts │ ├── authService.ts │ ├── importService.ts │ ├── metadataService.ts │ ├── nugetClient.ts │ ├── packageService.ts │ ├── sessionService.ts │ └── userService.ts ├── types.ts ├── ui │ ├── .prettierignore │ ├── .prettierrc │ ├── App.tsx │ ├── AppContent.tsx │ ├── Login.tsx │ ├── LoginApp.tsx │ ├── PackageList.tsx │ ├── components │ │ ├── ApiPasswordDrawer.tsx │ │ ├── LoginDialog.tsx │ │ ├── PasswordManagementMenu.tsx │ │ ├── PasswordStrengthIndicator.tsx │ │ ├── UploadDrawer.tsx │ │ ├── UserAvatarMenu.tsx │ │ ├── UserDeleteDrawer.tsx │ │ ├── UserManagementMenu.tsx │ │ ├── UserPasswordChangeDrawer.tsx │ │ ├── UserPasswordResetDrawer.tsx │ │ └── UserRegistrationDrawer.tsx │ ├── contexts │ │ └── SessionContext.tsx │ ├── index.html │ ├── login-main.tsx │ ├── login.html │ ├── main.tsx │ ├── public │ │ ├── favicon.ico │ │ ├── icon.png │ │ └── locale │ │ │ ├── en.json │ │ │ ├── fallback.json │ │ │ └── ja.json │ ├── utils │ │ ├── apiClient.ts │ │ └── commandBuilder.ts │ └── vite-env.d.ts └── utils │ ├── configLoader.ts │ ├── crypto.ts │ ├── fastifyLoggerAdapter.ts │ ├── fileStreaming.ts │ ├── passwordStrength.ts │ ├── prompt.ts │ ├── semver.ts │ └── urlResolver.ts ├── tests ├── auth-init.test.ts ├── authFailureTracker.test.ts ├── cli-config.test.ts ├── commandBuilder.test.ts ├── config-loader.test.ts ├── dotnet-v3-integration.test.ts ├── duplicate-package-policy.test.ts ├── e2e-missing-package-fallback.test.ts ├── fastify-auth.test.ts ├── fastify-logger-adapter.test.ts ├── fastify-server.test.ts ├── fastify-static-binary.test.ts ├── fastify-ui-api.test.ts ├── fastify-v3-api.test.ts ├── fixtures │ ├── NuGet.config.template │ ├── TestProject.csproj.template │ ├── packages │ │ ├── FlashCap.1.10.0.nupkg │ │ ├── FlashCap.1.11.0.nupkg │ │ ├── FlashCap.Core.1.10.0.nupkg │ │ ├── FlashCap.Core.1.11.0.nupkg │ │ ├── GitReader.1.15.0.nupkg │ │ ├── GitReader.1.16.0.nupkg │ │ ├── GitReader.Core.1.15.0.nupkg │ │ └── GitReader.Core.1.16.0.nupkg │ └── upload │ │ └── NamingFormatter.2.4.0.nupkg ├── helpers │ ├── auth.ts │ ├── binary-test-helper.ts │ ├── dotnet.ts │ ├── fs-utils.ts │ ├── jsonAuth.ts │ ├── package.ts │ └── test-helper.ts ├── https-cookie-config.test.ts ├── importService.test.ts ├── max-upload-size.test.ts ├── missing-package-response.test.ts ├── multipleApiPasswords.test.ts ├── nugetClient.test.ts ├── password-strength.test.ts ├── semver.test.ts └── urlResolver.test.ts ├── tsconfig.json ├── vite.config.ts └── vitest.config.ts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/README.md -------------------------------------------------------------------------------- /README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/README_ja.md -------------------------------------------------------------------------------- /README_pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/README_pack.md -------------------------------------------------------------------------------- /gen-packageMetadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/gen-packageMetadata.sh -------------------------------------------------------------------------------- /images/nuget-server-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/images/nuget-server-120.png -------------------------------------------------------------------------------- /images/nuget-server-1555.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/images/nuget-server-1555.png -------------------------------------------------------------------------------- /images/nuget-server-ss-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/images/nuget-server-ss-1.png -------------------------------------------------------------------------------- /images/nuget-server-ss-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/images/nuget-server-ss-2.png -------------------------------------------------------------------------------- /images/nuget-server-ss-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/images/nuget-server-ss-3.png -------------------------------------------------------------------------------- /images/nuget-server-ss-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/images/nuget-server-ss-4.png -------------------------------------------------------------------------------- /images/nuget-server-ss-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/images/nuget-server-ss-5.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/package.json -------------------------------------------------------------------------------- /src/authInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/authInit.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/generated/.gitignore: -------------------------------------------------------------------------------- 1 | packageMetadata.ts 2 | -------------------------------------------------------------------------------- /src/generated/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/generated/messages.ts -------------------------------------------------------------------------------- /src/generated/packageMetadata.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/generated/packageMetadata.d.ts -------------------------------------------------------------------------------- /src/importPackages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/importPackages.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/middleware/fastifyAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/middleware/fastifyAuth.ts -------------------------------------------------------------------------------- /src/plugins/vite-plugin-fastify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/plugins/vite-plugin-fastify.ts -------------------------------------------------------------------------------- /src/routes/api/publish/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/routes/api/publish/index.ts -------------------------------------------------------------------------------- /src/routes/api/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/routes/api/ui/index.ts -------------------------------------------------------------------------------- /src/routes/v3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/routes/v3/index.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/services/authFailureTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/services/authFailureTracker.ts -------------------------------------------------------------------------------- /src/services/authService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/services/authService.ts -------------------------------------------------------------------------------- /src/services/importService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/services/importService.ts -------------------------------------------------------------------------------- /src/services/metadataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/services/metadataService.ts -------------------------------------------------------------------------------- /src/services/nugetClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/services/nugetClient.ts -------------------------------------------------------------------------------- /src/services/packageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/services/packageService.ts -------------------------------------------------------------------------------- /src/services/sessionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/services/sessionService.ts -------------------------------------------------------------------------------- /src/services/userService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/services/userService.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/ui/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/.prettierignore -------------------------------------------------------------------------------- /src/ui/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/.prettierrc -------------------------------------------------------------------------------- /src/ui/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/App.tsx -------------------------------------------------------------------------------- /src/ui/AppContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/AppContent.tsx -------------------------------------------------------------------------------- /src/ui/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/Login.tsx -------------------------------------------------------------------------------- /src/ui/LoginApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/LoginApp.tsx -------------------------------------------------------------------------------- /src/ui/PackageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/PackageList.tsx -------------------------------------------------------------------------------- /src/ui/components/ApiPasswordDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/components/ApiPasswordDrawer.tsx -------------------------------------------------------------------------------- /src/ui/components/LoginDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/components/LoginDialog.tsx -------------------------------------------------------------------------------- /src/ui/components/PasswordManagementMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/components/PasswordManagementMenu.tsx -------------------------------------------------------------------------------- /src/ui/components/PasswordStrengthIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/components/PasswordStrengthIndicator.tsx -------------------------------------------------------------------------------- /src/ui/components/UploadDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/components/UploadDrawer.tsx -------------------------------------------------------------------------------- /src/ui/components/UserAvatarMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/components/UserAvatarMenu.tsx -------------------------------------------------------------------------------- /src/ui/components/UserDeleteDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/components/UserDeleteDrawer.tsx -------------------------------------------------------------------------------- /src/ui/components/UserManagementMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/components/UserManagementMenu.tsx -------------------------------------------------------------------------------- /src/ui/components/UserPasswordChangeDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/components/UserPasswordChangeDrawer.tsx -------------------------------------------------------------------------------- /src/ui/components/UserPasswordResetDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/components/UserPasswordResetDrawer.tsx -------------------------------------------------------------------------------- /src/ui/components/UserRegistrationDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/components/UserRegistrationDrawer.tsx -------------------------------------------------------------------------------- /src/ui/contexts/SessionContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/contexts/SessionContext.tsx -------------------------------------------------------------------------------- /src/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/index.html -------------------------------------------------------------------------------- /src/ui/login-main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/login-main.tsx -------------------------------------------------------------------------------- /src/ui/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/login.html -------------------------------------------------------------------------------- /src/ui/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/main.tsx -------------------------------------------------------------------------------- /src/ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/public/favicon.ico -------------------------------------------------------------------------------- /src/ui/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/public/icon.png -------------------------------------------------------------------------------- /src/ui/public/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/public/locale/en.json -------------------------------------------------------------------------------- /src/ui/public/locale/fallback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/public/locale/fallback.json -------------------------------------------------------------------------------- /src/ui/public/locale/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/public/locale/ja.json -------------------------------------------------------------------------------- /src/ui/utils/apiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/utils/apiClient.ts -------------------------------------------------------------------------------- /src/ui/utils/commandBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/utils/commandBuilder.ts -------------------------------------------------------------------------------- /src/ui/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/ui/vite-env.d.ts -------------------------------------------------------------------------------- /src/utils/configLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/utils/configLoader.ts -------------------------------------------------------------------------------- /src/utils/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/utils/crypto.ts -------------------------------------------------------------------------------- /src/utils/fastifyLoggerAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/utils/fastifyLoggerAdapter.ts -------------------------------------------------------------------------------- /src/utils/fileStreaming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/utils/fileStreaming.ts -------------------------------------------------------------------------------- /src/utils/passwordStrength.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/utils/passwordStrength.ts -------------------------------------------------------------------------------- /src/utils/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/utils/prompt.ts -------------------------------------------------------------------------------- /src/utils/semver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/utils/semver.ts -------------------------------------------------------------------------------- /src/utils/urlResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/src/utils/urlResolver.ts -------------------------------------------------------------------------------- /tests/auth-init.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/auth-init.test.ts -------------------------------------------------------------------------------- /tests/authFailureTracker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/authFailureTracker.test.ts -------------------------------------------------------------------------------- /tests/cli-config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/cli-config.test.ts -------------------------------------------------------------------------------- /tests/commandBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/commandBuilder.test.ts -------------------------------------------------------------------------------- /tests/config-loader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/config-loader.test.ts -------------------------------------------------------------------------------- /tests/dotnet-v3-integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/dotnet-v3-integration.test.ts -------------------------------------------------------------------------------- /tests/duplicate-package-policy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/duplicate-package-policy.test.ts -------------------------------------------------------------------------------- /tests/e2e-missing-package-fallback.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/e2e-missing-package-fallback.test.ts -------------------------------------------------------------------------------- /tests/fastify-auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fastify-auth.test.ts -------------------------------------------------------------------------------- /tests/fastify-logger-adapter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fastify-logger-adapter.test.ts -------------------------------------------------------------------------------- /tests/fastify-server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fastify-server.test.ts -------------------------------------------------------------------------------- /tests/fastify-static-binary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fastify-static-binary.test.ts -------------------------------------------------------------------------------- /tests/fastify-ui-api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fastify-ui-api.test.ts -------------------------------------------------------------------------------- /tests/fastify-v3-api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fastify-v3-api.test.ts -------------------------------------------------------------------------------- /tests/fixtures/NuGet.config.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fixtures/NuGet.config.template -------------------------------------------------------------------------------- /tests/fixtures/TestProject.csproj.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fixtures/TestProject.csproj.template -------------------------------------------------------------------------------- /tests/fixtures/packages/FlashCap.1.10.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fixtures/packages/FlashCap.1.10.0.nupkg -------------------------------------------------------------------------------- /tests/fixtures/packages/FlashCap.1.11.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fixtures/packages/FlashCap.1.11.0.nupkg -------------------------------------------------------------------------------- /tests/fixtures/packages/FlashCap.Core.1.10.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fixtures/packages/FlashCap.Core.1.10.0.nupkg -------------------------------------------------------------------------------- /tests/fixtures/packages/FlashCap.Core.1.11.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fixtures/packages/FlashCap.Core.1.11.0.nupkg -------------------------------------------------------------------------------- /tests/fixtures/packages/GitReader.1.15.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fixtures/packages/GitReader.1.15.0.nupkg -------------------------------------------------------------------------------- /tests/fixtures/packages/GitReader.1.16.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fixtures/packages/GitReader.1.16.0.nupkg -------------------------------------------------------------------------------- /tests/fixtures/packages/GitReader.Core.1.15.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fixtures/packages/GitReader.Core.1.15.0.nupkg -------------------------------------------------------------------------------- /tests/fixtures/packages/GitReader.Core.1.16.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fixtures/packages/GitReader.Core.1.16.0.nupkg -------------------------------------------------------------------------------- /tests/fixtures/upload/NamingFormatter.2.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/fixtures/upload/NamingFormatter.2.4.0.nupkg -------------------------------------------------------------------------------- /tests/helpers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/helpers/auth.ts -------------------------------------------------------------------------------- /tests/helpers/binary-test-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/helpers/binary-test-helper.ts -------------------------------------------------------------------------------- /tests/helpers/dotnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/helpers/dotnet.ts -------------------------------------------------------------------------------- /tests/helpers/fs-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/helpers/fs-utils.ts -------------------------------------------------------------------------------- /tests/helpers/jsonAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/helpers/jsonAuth.ts -------------------------------------------------------------------------------- /tests/helpers/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/helpers/package.ts -------------------------------------------------------------------------------- /tests/helpers/test-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/helpers/test-helper.ts -------------------------------------------------------------------------------- /tests/https-cookie-config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/https-cookie-config.test.ts -------------------------------------------------------------------------------- /tests/importService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/importService.test.ts -------------------------------------------------------------------------------- /tests/max-upload-size.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/max-upload-size.test.ts -------------------------------------------------------------------------------- /tests/missing-package-response.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/missing-package-response.test.ts -------------------------------------------------------------------------------- /tests/multipleApiPasswords.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/multipleApiPasswords.test.ts -------------------------------------------------------------------------------- /tests/nugetClient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/nugetClient.test.ts -------------------------------------------------------------------------------- /tests/password-strength.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/password-strength.test.ts -------------------------------------------------------------------------------- /tests/semver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/semver.test.ts -------------------------------------------------------------------------------- /tests/urlResolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tests/urlResolver.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekyo/nuget-server/HEAD/vitest.config.ts --------------------------------------------------------------------------------