@aether-baas/react-native 3.5.0 → 3.6.0

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 (1) hide show
  1. package/package.json +9 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aether-baas/react-native",
3
- "version": "3.5.0",
3
+ "version": "3.6.0",
4
4
  "description": "Aether SDK for React Native - Firebase-like aether namespace with mobile adapters",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -16,8 +16,15 @@
16
16
  "dist",
17
17
  "README.md"
18
18
  ],
19
+ "scripts": {
20
+ "build": "tsc",
21
+ "dev": "tsc --watch",
22
+ "clean": "rm -rf dist",
23
+ "typecheck": "tsc --noEmit",
24
+ "prepublishOnly": "pnpm build"
25
+ },
19
26
  "dependencies": {
20
- "@aether-baas/core": "^3.5.0",
27
+ "@aether-baas/core": "^3.6.0",
21
28
  "@aether-baas/react": "^3.5.0"
22
29
  },
23
30
  "peerDependencies": {
@@ -58,11 +65,5 @@
58
65
  "type": "git",
59
66
  "url": "https://github.com/allanfsouza/aether-sdk",
60
67
  "directory": "packages/react-native"
61
- },
62
- "scripts": {
63
- "build": "tsc",
64
- "dev": "tsc --watch",
65
- "clean": "rm -rf dist",
66
- "typecheck": "tsc --noEmit"
67
68
  }
68
69
  }