@eighty4/c2 0.0.2 → 0.0.3-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/CHANGELOG.md +4 -1
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -2,7 +2,10 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- - ???
5
+ ### Fixed
6
+
7
+ - TypeScript type declarations were broken by pointing to a
8
+ directory instead of the export entrypoint `.d.ts` file
6
9
 
7
10
  ## [v0.0.2] - 2025-06-07
8
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eighty4/c2",
3
- "version": "0.0.2",
3
+ "version": "0.0.3-0",
4
4
  "author": "Adam McKee <adam.be.g84d@gmail.com>",
5
5
  "repository": "https://github.com/eighty4/c2",
6
6
  "homepage": "https://github.com/eighty4/c2",
@@ -22,6 +22,7 @@
22
22
  "bin": {
23
23
  "c2": "./lib_js/c2.bin.js"
24
24
  },
25
+ "types": "./lib_types/c2.api.d.ts",
25
26
  "exports": {
26
27
  ".": {
27
28
  "bun": "./lib/c2.api.ts",
@@ -34,7 +35,6 @@
34
35
  "node": "./lib_js/*.js"
35
36
  }
36
37
  },
37
- "types": "./lib_types",
38
38
  "scripts": {
39
39
  "build": "tsc",
40
40
  "fmt": "prettier --write .",