@peerbit/server 5.8.15 → 5.8.16-48ac6de

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 (2) hide show
  1. package/dist/src/bin.js +0 -0
  2. package/package.json +21 -21
package/dist/src/bin.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peerbit/server",
3
- "version": "5.8.15",
3
+ "version": "5.8.16-48ac6de",
4
4
  "author": "dao.xyz",
5
5
  "repository": {
6
6
  "type": "git",
@@ -56,7 +56,18 @@
56
56
  "*.d.ts"
57
57
  ]
58
58
  },
59
+ "scripts": {
60
+ "clean": "shx rm -rf lib/*",
61
+ "build": "pnpm run clean && pnpm run build-lib && pnpm run build-ui",
62
+ "build-lib": "tsc -p tsconfig.json",
63
+ "build-ui": "pnpm --dir ../frontend build",
64
+ "postbuild": "cp src/nginx-template.conf dist/src/ && cp -r ../frontend/dist/. dist/ui",
65
+ "test": "aegir test --t node",
66
+ "lint": "aegir lint"
67
+ },
59
68
  "devDependencies": {
69
+ "@peerbit/test-lib": "0.0.1-48ac6de",
70
+ "@peerbit/test-utils": "2.2.11-48ac6de",
60
71
  "@types/yargs": "17.0.24",
61
72
  "aws-sdk": "^2.1259.0",
62
73
  "dotenv": "^16.1.4",
@@ -64,13 +75,12 @@
64
75
  "@types/tar-stream": "^3.1.3",
65
76
  "shx": "^0.3.4",
66
77
  "@types/libsodium-wrappers": "^0.7.14",
67
- "uuid": "^10.0.0",
68
- "@peerbit/test-utils": "2.2.10",
69
- "@peerbit/test-lib": "0.0.1"
78
+ "uuid": "^10.0.0"
70
79
  },
71
80
  "dependencies": {
72
81
  "axios": "^1.4.0",
73
82
  "chalk": "^5.3.0",
83
+ "peerbit": "4.3.10-48ac6de",
74
84
  "yargs": "^17.7.2",
75
85
  "tar-stream": "^3.1.7",
76
86
  "tmp": "^0.2.1",
@@ -81,31 +91,21 @@
81
91
  "@libp2p/tcp": "^11.0.2",
82
92
  "@libp2p/websockets": "^10.0.3",
83
93
  "@multiformats/multiaddr": "^13.0.1",
94
+ "@peerbit/blocks": "3.0.15-48ac6de",
95
+ "@peerbit/crypto": "2.3.13-48ac6de",
96
+ "@peerbit/program": "5.3.6-48ac6de",
97
+ "@peerbit/pubsub": "4.0.18-48ac6de",
98
+ "@peerbit/time": "2.2.0-48ac6de",
84
99
  "@dao-xyz/borsh": "^5.2.3",
85
100
  "libsodium-wrappers": "^0.7.15",
86
101
  "uint8arrays": "^5.1.0",
87
102
  "level": "^10.0.0",
88
103
  "memory-level": "^3.1.0",
89
104
  "multiformats": "^13.4.1",
90
- "abstract-level": "^3.1.0",
91
- "peerbit": "4.3.9",
92
- "@peerbit/blocks": "3.0.15",
93
- "@peerbit/crypto": "2.3.13",
94
- "@peerbit/program": "5.3.5",
95
- "@peerbit/pubsub": "4.0.18",
96
- "@peerbit/time": "2.2.0"
105
+ "abstract-level": "^3.1.0"
97
106
  },
98
107
  "optionalDependencies": {
99
108
  "@aws-sdk/client-ec2": "^3.390.0",
100
109
  "@aws-sdk/client-route-53": "^3.391.0"
101
- },
102
- "scripts": {
103
- "clean": "shx rm -rf lib/*",
104
- "build": "pnpm run clean && pnpm run build-lib && pnpm run build-ui",
105
- "build-lib": "tsc -p tsconfig.json",
106
- "build-ui": "pnpm --dir ../frontend build",
107
- "postbuild": "cp src/nginx-template.conf dist/src/ && cp -r ../frontend/dist/. dist/ui",
108
- "test": "aegir test --t node",
109
- "lint": "aegir lint"
110
110
  }
111
- }
111
+ }