@boperators/plugin-bun 0.1.0 → 0.1.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 (3) hide show
  1. package/README.md +2 -0
  2. package/logo.png +0 -0
  3. package/package.json +6 -4
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @boperators/plugin-bun
2
2
 
3
+ ![Sym.JS logo](./logo.png)
4
+
3
5
  Bun plugin for [boperators](https://www.npmjs.com/package/boperators) that ensures operator overloads work when running TypeScript files directly with Bun, instead of requiring an intermediate transform step.
4
6
 
5
7
  ## Installation
package/logo.png ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boperators/plugin-bun",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "license": "MIT",
5
5
  "description": "Bun plugin for boperators - transforms operator overloads at runtime.",
6
6
  "repository": {
@@ -27,13 +27,15 @@
27
27
  "package.json",
28
28
  "README.md",
29
29
  "license.txt",
30
- "index.ts"
30
+ "index.ts",
31
+ "logo.png"
31
32
  ],
32
33
  "peerDependencies": {
33
- "boperators": "0.1.0",
34
+ "boperators": "0.1.3",
34
35
  "typescript": ">=5.0.0 <5.10.0"
35
36
  },
36
37
  "devDependencies": {
37
- "@types/bun": "^1.3.8"
38
+ "@types/bun": "^1.3.8",
39
+ "boperators": "file:../../package"
38
40
  }
39
41
  }