Skip to content

Commit

Permalink
Merge pull request #14 from ADORSYS-GIS/13-release-cloning-decorator-…
Browse files Browse the repository at this point in the history
…event-bus-and-storage-libraries-to-artifact-repository

update package.json for npm publishing
  • Loading branch information
hugoib authored Oct 1, 2024
2 parents 9102c16 + a322804 commit 541887c
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 25 deletions.
28 changes: 16 additions & 12 deletions package-lock.json

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

14 changes: 10 additions & 4 deletions packages/cloning-decorator/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "cloning-decorator",
"name": "@adorsys-gis/cloning-decorator",
"version": "1.0.0",
"type": "commonjs",
"main": "./src/index.js",
Expand All @@ -24,8 +24,14 @@
"test": "jest",
"depcheck": "depcheck || true"
},
"keywords": [],
"author": "",
"keywords": [
"typescript",
"decorator",
"deep-clone",
"immutability",
"state-management"
],
"author": "Adorsys",
"license": "ISC",
"description": ""
"description": "A TypeScript decorator library for deep cloning method arguments to prevent side effects, enhancing immutability in class methods."
}
20 changes: 17 additions & 3 deletions packages/event-bus/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "event-bus",
"name": "@adorsys-gis/event-bus",
"version": "0.0.1",
"dependencies": {
"@swc/helpers": "~0.5.2",
Expand All @@ -19,6 +19,20 @@
},
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.lib.json"
}
"build": "tsc -p tsconfig.lib.json",
"lint": "eslint ./src --ext .ts"
},
"keywords": [
"event-bus",
"event-emitter",
"asynchronous",
"deep-cloning",
"event-driven",
"javascript",
"event-management",
"custom-events"
],
"author": "Adorsys",
"license": "ISC",
"description": "An event-driven library for managing custom events in JavaScript applications. Built on eventemitter3, it supports both synchronous and asynchronous event handling and ensures deep cloning of emitted data to prevent unintended mutations."
}
25 changes: 19 additions & 6 deletions packages/storage/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "storage",
"name": "@adorsys-gis/storage",
"version": "1.0.0",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.lib.json"
"build": "tsc -p tsconfig.lib.json",
"lint": "eslint ./src --ext .ts"
},
"private": true,
"private": false,
"dependencies": {
"idb": "^8.0.0"
},
Expand All @@ -30,8 +31,20 @@
"type": "commonjs",
"main": "./src/index.js",
"typings": "./src/index.d.ts",
"keywords": [],
"author": "",
"keywords": [
"storage",
"data-storage",
"IndexedDB",
"LocalStorage",
"SessionStorage",
"browser-storage",
"web-apps",
"asynchronous-storage",
"data-retrieval",
"JavaScript",
"TypeScript"
],
"author": "Adorsys",
"license": "ISC",
"description": ""
"description": "A service module for data storage and retrieval in Progressive Web Apps (PWAs) using IndexedDB, LocalStorage, and SessionStorage. This library provides an interface for efficient asynchronous storage of structured data, designed to meet the needs of modern web applications."
}

0 comments on commit 541887c

Please sign in to comment.