Updated package name to include org

This commit is contained in:
2026-03-10 18:39:32 +01:00
parent 9b2d4d1096
commit c52ec1dc43
2 changed files with 17 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
{
"name": "meshcore",
"name": "@hamradio/meshcore",
"version": "1.1.1",
"description": "MeshCore protocol support for Typescript",
"keywords": [
@@ -9,7 +9,7 @@
],
"repository": {
"type": "git",
"url": "git+https://git.maze.io/ham/meshcore.js"
"url": "https://git.maze.io/ham/meshcore.js"
},
"license": "MIT",
"author": "Wijnand Modderman-Lenstra",

View File

@@ -1,11 +1,20 @@
export * from './identity';
export * from './identity.types';
export type * from './identity.types';
import * as identityTypes from './identity.types';
import type * as identityTypesTypes from './identity.types';
export * from './crypto';
export * from './crypto.types';
export type * from './crypto.types';
import * as cryptoTypes from './crypto.types';
import type * as cryptoTypesTypes from './crypto.types';
export * from './packet';
export * from './packet.types';
export type * from './packet.types';
import * as packetTypes from './packet.types';
import type * as packetTypesTypes from './packet.types';
export type {
identityTypes,
identityTypesTypes,
cryptoTypes,
cryptoTypesTypes,
packetTypes,
packetTypesTypes
};