swimparse 0.1.0 → 0.1.1

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 +6 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -32,13 +32,14 @@ everything else.
32
32
 
33
33
  ## Install
34
34
 
35
- Consumed as a pinned git dependency:
36
-
37
- ```json
38
- "dependencies": { "swimparse": "github:g0rgonus/swimparse#v0.1.0" }
35
+ ```sh
36
+ npm install swimparse
39
37
  ```
40
38
 
41
- Pin to a tag or SHA for reproducibility. `npm ci` clones it in CI with no publish step.
39
+ Zero dependencies, so there is nothing else to pull in.
40
+
41
+ Releases are published from CI with [provenance](https://docs.npmjs.com/generating-provenance-statements),
42
+ so every version on npm can be traced to the commit and workflow run that built it.
42
43
 
43
44
  ## Usage
44
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swimparse",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Parses SDIF v3 (.sd3) and Hy-Tek (.hy3) swim-meet result files into one NormalizedMeet JSON contract. Zero dependencies; runs in the browser, Node, and CI.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",