@digitaliaconnect/heartbeat 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE.md +1 -0
  2. package/README.md +3 -0
  3. package/package.json +52 -0
package/LICENSE.md ADDED
@@ -0,0 +1 @@
1
+ See ../../LICENSE.md
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @digitaliaconnect/heartbeat
2
+
3
+ Heartbeat utilities for DigitaliaConnect Protocol.
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@digitaliaconnect/heartbeat",
3
+ "description": "Heartbeat utilities for DigitaliaConnect Protocol",
4
+ "version": "1.2.2",
5
+ "author": "Digitalia Network <digitalia.network>",
6
+ "homepage": "https://github.com/cosimoglobal/digitaliaconnect-monorepo/",
7
+ "license": "SEE LICENSE IN LICENSE.md",
8
+ "main": "dist/index.cjs",
9
+ "module": "dist/index.js",
10
+ "unpkg": "dist/index.umd.js",
11
+ "types": "dist/types/index.d.ts",
12
+ "type": "module",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/types/index.d.ts",
16
+ "module": "./dist/index.js",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ },
20
+ "sideEffects": false,
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "keywords": [
25
+ "wallet",
26
+ "digitaliaconnect",
27
+ "heartbeat"
28
+ ],
29
+ "scripts": {
30
+ "clean": "rm -rf dist",
31
+ "build:pre": "npm run clean",
32
+ "build:types": "tsc",
33
+ "build:source": "rollup --config rollup.config.js",
34
+ "build": "npm run build:pre; npm run build:source; npm run build:types",
35
+ "test:run": "vitest run --dir test",
36
+ "test": "npm run test:run",
37
+ "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts' './test/**/*.ts'",
38
+ "prettier": "prettier --check '{src,test}/**/*.{js,ts,jsx,tsx}'"
39
+ },
40
+ "dependencies": {
41
+ "events": "3.3.0"
42
+ },
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/cosimoglobal/digitaliaconnect-monorepo.git",
46
+ "directory": "packages/heartbeat"
47
+ },
48
+ "publishConfig": {
49
+ "provenance": true,
50
+ "access": "public"
51
+ }
52
+ }