@debugbundle/shared-types 0.1.0-next.1 → 0.1.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 (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -6,10 +6,10 @@ This package is the low-level contract layer used by the DebugBundle SDKs and co
6
6
 
7
7
  ## Install
8
8
 
9
- Current prerelease channel:
9
+ Published package:
10
10
 
11
11
  ```bash
12
- npm install @debugbundle/shared-types@next
12
+ npm install @debugbundle/shared-types
13
13
  ```
14
14
 
15
15
  ## Example
@@ -36,5 +36,5 @@ EventEnvelopeSchema.parse(event);
36
36
 
37
37
  ## Notes
38
38
 
39
- - Published from the DebugBundle prerelease workflow under the `next` dist-tag.
39
+ - Published from the core-owned shared-package release workflow in `debugbundle/debugbundle`.
40
40
  - Source lives in the DebugBundle workspace during pre-production.
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "@debugbundle/shared-types",
3
- "version": "0.1.0-next.1",
3
+ "version": "0.1.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0-only",
7
7
  "description": "Shared DebugBundle schemas, types, and constants",
8
8
  "files": [
9
- "dist"
9
+ "dist",
10
+ "README.md",
11
+ "LICENSE"
10
12
  ],
11
13
  "main": "./dist/index.js",
12
14
  "types": "./dist/index.d.ts",