Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update package.json for npm publishing #14

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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."
}