Updated package name to include org
This commit is contained in:
@@ -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",
|
||||
|
||||
21
src/index.ts
21
src/index.ts
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user