@tmorin/ceb-messaging-simple
Version:
The package is part of the `<ceb/>` library. It provides an implementation of the messaging model leveraging on a vanilla TypeScript/JavaScript environment.
62 lines (61 loc) • 1.77 kB
JSON
{
"name": "@tmorin/ceb-messaging-simple",
"version": "7.1.0",
"license": "MIT",
"description": "The package is part of the `<ceb/>` library. It provides an implementation of the messaging model leveraging on a vanilla TypeScript/JavaScript environment.",
"keywords": [
"custom-element-builder",
"custom-elements-v1",
"custom-elements",
"custom-element",
"typescript",
"typescript-library",
"javascript-library",
"messaging",
"cqrs",
"bus",
"event-bus",
"message-bus"
],
"homepage": "https://tmorin.github.io/ceb",
"bugs": {
"url": "https://github.com/tmorin/ceb/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:tmorin/ceb.git"
},
"author": {
"name": "Thibault Morin",
"url": "https://tmorin.github.io"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/mjs/index.js"
}
},
"types": "dist/types/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "npm run build:lib && npm run build:module && npm run build:fix",
"build:fix": "../../scripts/fix-dist.js",
"build:lib": "tsc -p tsconfig.build.json --module CommonJS --outDir dist/cjs --declaration --declarationDir dist/types",
"build:module": "tsc -p tsconfig.build.json --module ESNext --outDir dist/mjs",
"test": "mocha --require ts-node/register src/**/*.spec.ts",
"test:watch": "npm test -- --watch --watch-files '**/*.ts'"
},
"dependencies": {
"@tmorin/ceb-messaging-core": "^7.1.0"
},
"gitHead": "17a19d08a53aa18519286ae1b2a65f4f485e5e66"
}