Skip to content

Commit

Permalink
Name change & version & deps update
Browse files Browse the repository at this point in the history
  • Loading branch information
corrideat committed Sep 11, 2024
1 parent e3cb531 commit fa1078d
Show file tree
Hide file tree
Showing 70 changed files with 494 additions and 174 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright © 2024 Exact Realty Limited. All rights reserved.
/* Copyright © 2024 Apeleg Limited. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright © 2024 Exact Realty Limited. All rights reserved.
/* Copyright © 2024 Apeleg Limited. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright © 2024 Exact Realty Limited
Copyright © 2024 Apeleg Limited

Permission to use, copy, modify, and distribute this software for any purpose
with or without fee is hereby granted, provided that the above copyright notice
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ following DER rules**
To install the package, you can use npm or yarn:

```sh
npm install @exact-realty/cms-classes
npm install @apeleghq/cms-classes
```

or

```sh
yarn add @exact-realty/cms-classes
yarn add @apeleghq/cms-classes
```

### 📚 Usage
Expand Down
2 changes: 1 addition & 1 deletion SECURITY
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ vulnerabilities that you may discover.

If you believe you have found a security vulnerability in our software, please
let us know immediately. You may find our contact information at
<https://exact.realty/.well-known/security.txt>. Please include the following
<https://apeleg.com/.well-known/security.txt>. Please include the following
information in your report:

* A brief description of the vulnerability
Expand Down
6 changes: 3 additions & 3 deletions esbuild.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

/* Copyright © 2024 Exact Realty Limited. All rights reserved.
/* Copyright © 2024 Apeleg Limited. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand Down Expand Up @@ -35,8 +35,8 @@ const buildOptionsBase = {
platform: 'node',
external: [
'esbuild',
'@exact-realty/asn1-der',
'@exact-realty/crypto-oids',
'@apeleghq/asn1-der',
'@apeleghq/crypto-oids',
],
};

Expand Down
61 changes: 34 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@exact-realty/cms-classes",
"version": "1.0.0",
"name": "@apeleghq/cms-classes",
"version": "1.0.1",
"description": "A collection of utility classes to encode ASN.1 data following DER rules",
"type": "module",
"main": "dist/index.cjs",
Expand Down Expand Up @@ -71,7 +71,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/Exact-Realty/ts-cms-classes.git"
"url": "git+https://github.com/ApelegHQ/ts-cms-classes.git"
},
"files": [
"dist/**/*"
Expand All @@ -87,7 +87,7 @@
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Exact Realty Limited",
"author": "Apeleg Limited",
"license": "ISC",
"keywords": [
"asn1",
Expand All @@ -102,7 +102,7 @@
"x.509"
],
"dependencies": {
"@exact-realty/asn1-der": "^1.0.1",
"@exact-realty/crypto-oids": "^20240221.0.0"
"@apeleghq/asn1-der": "^1.0.2",
"@apeleghq/crypto-oids": "^20240911.0.0"
}
}
2 changes: 1 addition & 1 deletion src/cms.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright © 2024 Exact Realty Limited. All rights reserved.
/* Copyright © 2024 Apeleg Limited. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand Down
6 changes: 3 additions & 3 deletions src/cms/AlgorithmIdentifier.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright © 2024 Exact Realty Limited. All rights reserved.
/* Copyright © 2024 Apeleg Limited. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand All @@ -13,8 +13,8 @@
* PERFORMANCE OF THIS SOFTWARE.
*/

import { Asn1Object, Asn1Sequence } from '@exact-realty/asn1-der';
import type { IAsn1Data } from '@exact-realty/asn1-der';
import { Asn1Object, Asn1Sequence } from '@apeleghq/asn1-der';
import type { IAsn1Data } from '@apeleghq/asn1-der';

// RFC 5912
class AlgorithmIdentifier extends Asn1Sequence {
Expand Down
6 changes: 3 additions & 3 deletions src/cms/Attribute.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright © 2024 Exact Realty Limited. All rights reserved.
/* Copyright © 2024 Apeleg Limited. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand All @@ -13,8 +13,8 @@
* PERFORMANCE OF THIS SOFTWARE.
*/

import type { Asn1Object } from '@exact-realty/asn1-der';
import { Asn1Sequence } from '@exact-realty/asn1-der';
import type { Asn1Object } from '@apeleghq/asn1-der';
import { Asn1Sequence } from '@apeleghq/asn1-der';
import type AttributeValue from './AttributeValue.js';

class Attribute extends Asn1Sequence {
Expand Down
4 changes: 2 additions & 2 deletions src/cms/AttributeValue.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright © 2024 Exact Realty Limited. All rights reserved.
/* Copyright © 2024 Apeleg Limited. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand All @@ -13,7 +13,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/

import { Asn1Set } from '@exact-realty/asn1-der';
import { Asn1Set } from '@apeleghq/asn1-der';

class AttributeValue extends Asn1Set {}

Expand Down
4 changes: 2 additions & 2 deletions src/cms/CMSVersion.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright © 2024 Exact Realty Limited. All rights reserved.
/* Copyright © 2024 Apeleg Limited. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand All @@ -13,7 +13,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/

import { Asn1Integer } from '@exact-realty/asn1-der';
import { Asn1Integer } from '@apeleghq/asn1-der';

let v0: CMSVersion;
let v1: CMSVersion;
Expand Down
2 changes: 1 addition & 1 deletion src/cms/CertificateChoices.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright © 2024 Exact Realty Limited. All rights reserved.
/* Copyright © 2024 Apeleg Limited. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand Down
4 changes: 2 additions & 2 deletions src/cms/CertificateSet.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright © 2024 Exact Realty Limited. All rights reserved.
/* Copyright © 2024 Apeleg Limited. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand All @@ -13,7 +13,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/

import { Asn1Set } from '@exact-realty/asn1-der';
import { Asn1Set } from '@apeleghq/asn1-der';
import type CertificateChoices from './CertificateChoices.js';

class CertificateSet extends Asn1Set {
Expand Down
Loading

0 comments on commit fa1078d

Please sign in to comment.