supertalk 0.0.1 → 0.0.2

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.
package/index.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ /**
2
+ * supertalk
3
+ *
4
+ * Type-safe client/server communication for workers, iframes, and RPC.
5
+ *
6
+ * This package re-exports everything from @supertalk/core for convenience.
7
+ */
8
+ export * from '@supertalk/core';
9
+ //# sourceMappingURL=index.d.ts.map
package/index.d.ts.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,cAAc,iBAAiB,CAAC"}
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ /**
2
+ * supertalk
3
+ *
4
+ * Type-safe client/server communication for workers, iframes, and RPC.
5
+ *
6
+ * This package re-exports everything from @supertalk/core for convenience.
7
+ */
8
+ export * from '@supertalk/core';
9
+ //# sourceMappingURL=index.js.map
package/index.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,cAAc,iBAAiB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertalk",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Type-safe client/server communication for workers, iframes, and RPC",
5
5
  "type": "module",
6
6
  "exports": {
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "wireit": {
22
22
  "build": {
23
- "command": "tsc --build --pretty",
23
+ "command": "tsc --pretty",
24
24
  "dependencies": [
25
25
  "../core:build"
26
26
  ],