@nitra/zebra 6.1.3

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/README.md +6 -0
  2. package/index.js +3 -0
  3. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Nitra Cap components
2
+
3
+ | Папка | Описание |
4
+ |-----------------------------|--------------------------------------------------------|
5
+ | [app-update](./app-apdate/) | Проверка и установка новой версии приложения в маркете |
6
+ | [save-token](./save-token/) | Отримання та збереження push токену |
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export const print = text => {
2
+ console.log(text)
3
+ }
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@nitra/zebra",
3
+ "version": "6.1.3",
4
+ "description": "Nitra capacitor components",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": "./index.js"
8
+ },
9
+ "scripts": {
10
+ "fix": "yarn dlx eslint --fix . && npx prettier --write . "
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/nitra/zebra.git"
15
+ },
16
+ "author": "v@nitra.ai",
17
+ "license": "ISC",
18
+ "bugs": {
19
+ "url": "https://github.com/nitra/zebra/issues"
20
+ },
21
+ "homepage": "https://github.com/nitra/zebra",
22
+ "dependencies": {
23
+ "@capacitor/core": "^7.4.3"
24
+ }
25
+ }