@macula-io/ts 0.13.2 → 0.13.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 (1) hide show
  1. package/package.json +13 -3
package/package.json CHANGED
@@ -1,9 +1,19 @@
1
1
  {
2
2
  "name": "@macula-io/ts",
3
- "version": "0.13.2",
3
+ "version": "0.13.3",
4
4
  "description": "TypeScript SDK for the Macula mesh (FFI over macula-go)",
5
5
  "license": "Apache-2.0",
6
- "keywords": ["macula", "mesh", "quic", "rpc", "pubsub", "ffi", "wire-protocol", "typescript", "p2p"],
6
+ "keywords": [
7
+ "macula",
8
+ "mesh",
9
+ "quic",
10
+ "rpc",
11
+ "pubsub",
12
+ "ffi",
13
+ "wire-protocol",
14
+ "typescript",
15
+ "p2p"
16
+ ],
7
17
  "type": "module",
8
18
  "sideEffects": false,
9
19
  "homepage": "https://github.com/macula-io/macula-ts#readme",
@@ -33,7 +43,7 @@
33
43
  "scripts": {
34
44
  "build:go": "go env -w CGO_ENABLED=1 && cd cabi && go mod tidy && go build -trimpath -buildvcs=false -buildmode=c-archive -o build/libmacula.a .",
35
45
  "build:addon:dev": "npm run build:go && node-gyp rebuild",
36
- "build:prebuilds": "npm run build:go && prebuildify --napi --strip",
46
+ "build:prebuilds": "npm run build:go && prebuildify --napi --strip && npm pkg delete scripts.install",
37
47
  "build": "npm run build:addon:dev && tsc",
38
48
  "test": "vitest run",
39
49
  "test:live": "MACULA_TS_LIVE=1 vitest run src/session.live.test.ts src/rpc.live.test.ts src/dht.live.test.ts src/pubsub.live.test.ts src/content.live.test.ts src/ucan.live.test.ts src/directdial.live.test.ts",