@optimystic/db-p2p-storage-rn 0.2.2 → 0.7.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 +6 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optimystic/db-p2p-storage-rn",
3
- "version": "0.2.2",
3
+ "version": "0.7.0",
4
4
  "type": "module",
5
5
  "description": "React Native storage backend for @optimystic/db-p2p using MMKV",
6
6
  "main": "dist/src/index.js",
@@ -33,23 +33,19 @@
33
33
  "mmkv"
34
34
  ],
35
35
  "scripts": {
36
- "clean": "aegir clean",
37
- "build": "aegir build --env node",
38
- "lint": "aegir lint",
39
- "test": "aegir test",
40
- "test:node": "aegir test -t node",
41
- "dep-check": "aegir dep-check"
36
+ "clean": "rimraf dist",
37
+ "build": "tsc"
42
38
  },
43
39
  "devDependencies": {
44
40
  "@types/debug": "^4.1.12",
45
41
  "@types/mocha": "^10.0.10",
46
42
  "@types/node": "^25.1.0",
47
- "aegir": "^47.0.26",
43
+ "rimraf": "^6.1.2",
48
44
  "typescript": "^5.9.3"
49
45
  },
50
46
  "dependencies": {
51
- "@optimystic/db-core": "^0.5.2",
52
- "@optimystic/db-p2p": "^0.2.3",
47
+ "@optimystic/db-core": "^0.7.0",
48
+ "@optimystic/db-p2p": "^0.7.0",
53
49
  "debug": "^4.4.3"
54
50
  },
55
51
  "peerDependencies": {
@@ -59,10 +55,5 @@
59
55
  "react-native-mmkv": {
60
56
  "optional": false
61
57
  }
62
- },
63
- "aegir": {
64
- "build": {
65
- "bundle": false
66
- }
67
58
  }
68
59
  }