fix(metadata): Update repository, package, and branding details to reflect new project ownership and naming

This commit is contained in:
Philipp Kunz 2025-04-28 08:58:37 +00:00
parent 4c13cae34d
commit d58f21f5de
6 changed files with 33 additions and 37 deletions

View File

@ -1,5 +1,14 @@
# Changelog # Changelog
## 2025-04-28 - 1.0.21 - fix(metadata)
Update repository, package, and branding details to reflect new project ownership and naming
- Changed author in package.json from 'Lossless GmbH' to 'Task Venture Capital GmbH'
- Updated repository URL, issues URL, and homepage in package.json
- Revised npmextra.json with updated githost, gitscope, npmPackagename, and projectDomain
- Updated readme.md to replace '@mojoio/letterxpress' with '@apiclient.xyz/letterxpress' and adjust corresponding links
- Replaced old license file with new license.md reflecting updated copyright information
## 2025-03-15 - 1.0.20 - fix(letterxpress) ## 2025-03-15 - 1.0.20 - fix(letterxpress)
Update dependencies, adjust PDF generation parameters, and remove obsolete CI configuration Update dependencies, adjust PDF generation parameters, and remove obsolete CI configuration

View File

@ -1,4 +1,4 @@
Copyright (c) 2019 Lossless GmbH (hello@lossless.com) Copyright (c) 2019 Task Venture Capital GmbH (hello@task.vc)
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -2,13 +2,13 @@
"gitzone": { "gitzone": {
"projectType": "npm", "projectType": "npm",
"module": { "module": {
"githost": "gitlab.com", "githost": "code.foss.global",
"gitscope": "mojoio", "gitscope": "apiclient.xyz",
"gitrepo": "letterxpress", "gitrepo": "letterxpress",
"description": "an unofficial API package for the letterxpress API", "description": "an unofficial API package for the letterxpress API",
"npmPackagename": "@mojoio/letterxpress", "npmPackagename": "@apiclient.xyz/letterxpress",
"license": "MIT", "license": "MIT",
"projectDomain": "mojo.io" "projectDomain": "apiclient.xyz"
} }
}, },
"npmci": { "npmci": {

View File

@ -5,8 +5,16 @@
"description": "an unofficial API package for the letterxpress API", "description": "an unofficial API package for the letterxpress API",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH", "author": "Task Venture Capital GmbH",
"license": "MIT", "license": "MIT",
"repository": {
"type": "git",
"url": "git+https://code.foss.global/apiclient.xyz/letterxpress.git"
},
"bugs": {
"url": "https://code.foss.global/apiclient.xyz/letterxpress/issues"
},
"homepage": "https://code.foss.global/apiclient.xyz/letterxpress#readme",
"scripts": { "scripts": {
"test": "(tstest test/)", "test": "(tstest test/)",
"build": "(tsbuild --web --allowimplicitany)", "build": "(tsbuild --web --allowimplicitany)",

View File

@ -1,27 +1,11 @@
# @mojoio/letterxpress # @apiclient.xyz/letterxpress
an unofficial API package for the letterxpress API an unofficial API package for the letterxpress API
## Availabililty and Links ## Availability and Links
* [npmjs.org (npm package)](https://www.npmjs.com/package/@mojoio/letterxpress) * [npm package](https://www.npmjs.com/package/@apiclient.xyz/letterxpress)
* [gitlab.com (source)](https://gitlab.com/mojoio/letterxpress) * [Source code (Code.Foss.Global)](https://code.foss.global/apiclient.xyz/letterxpress)
* [github.com (source mirror)](https://github.com/mojoio/letterxpress) * [Issue tracker](https://code.foss.global/apiclient.xyz/letterxpress/issues)
* [docs (typedoc)](https://mojoio.gitlab.io/letterxpress/)
## Status for master
Status Category | Status Badge
-- | --
GitLab Pipelines | [![pipeline status](https://gitlab.com/mojoio/letterxpress/badges/master/pipeline.svg)](https://lossless.cloud)
GitLab Pipline Test Coverage | [![coverage report](https://gitlab.com/mojoio/letterxpress/badges/master/coverage.svg)](https://lossless.cloud)
npm | [![npm downloads per month](https://badgen.net/npm/dy/@mojoio/letterxpress)](https://lossless.cloud)
Snyk | [![Known Vulnerabilities](https://badgen.net/snyk/mojoio/letterxpress)](https://lossless.cloud)
TypeScript Support | [![TypeScript](https://badgen.net/badge/TypeScript/>=%203.x/blue?icon=typescript)](https://lossless.cloud)
node Support | [![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
Code Style | [![Code Style](https://badgen.net/badge/style/prettier/purple)](https://lossless.cloud)
PackagePhobia (total standalone install weight) | [![PackagePhobia](https://badgen.net/packagephobia/install/@mojoio/letterxpress)](https://lossless.cloud)
PackagePhobia (package size on registry) | [![PackagePhobia](https://badgen.net/packagephobia/publish/@mojoio/letterxpress)](https://lossless.cloud)
BundlePhobia (total size when bundled) | [![BundlePhobia](https://badgen.net/bundlephobia/minzip/@mojoio/letterxpress)](https://lossless.cloud)
Platform support | [![Supports Windows 10](https://badgen.net/badge/supports%20Windows%2010/yes/green?icon=windows)](https://lossless.cloud) [![Supports Mac OS X](https://badgen.net/badge/supports%20Mac%20OS%20X/yes/green?icon=apple)](https://lossless.cloud)
## Usage ## Usage
@ -30,7 +14,7 @@ Use TypeScript for best in class intellisense.
letterxpress implements the LXP API documented here: [LXP API Documentation](https://www.letterxpress.de/briefe-uebertragen/api) letterxpress implements the LXP API documented here: [LXP API Documentation](https://www.letterxpress.de/briefe-uebertragen/api)
```typescript ```typescript
import * as letterxpress from '@mojoio/letterxpress'; import * as letterxpress from '@apiclient.xyz/letterxpress';
const account = new letterxpress.LetterXpressAccount({ const account = new letterxpress.LetterXpressAccount({
email: 'myemail@example.com', email: 'myemail@example.com',
@ -38,13 +22,8 @@ const account = new letterxpress.LetterXpressAccount({
}); });
``` ```
## Contribution ## Contributing
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :) Contributions, bug reports, and feature requests are welcome! Please open an issue or submit a pull request at [Code.Foss.Global](https://code.foss.global/apiclient.xyz/letterxpress/issues).
For further information read the linked docs at the top of this readme. > MIT licensed | © Task Venture Capital GmbH
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
[![repo-footer](https://lossless.gitlab.io/publicrelations/repofooter.svg)](https://maintainedby.lossless.com)

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@apiclient.xyz/letterxpress', name: '@apiclient.xyz/letterxpress',
version: '1.0.20', version: '1.0.21',
description: 'an unofficial API package for the letterxpress API' description: 'an unofficial API package for the letterxpress API'
} }