@bb-labs/bldr 0.0.8 → 0.0.10

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 +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -5,7 +5,7 @@ A TypeScript build tool with watch mode, automatic dist synchronization, and spl
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- bun add -d @bb-labs/bldr
8
+ bun add -d @bb-labs/bldr tsc-alias typescript
9
9
  ```
10
10
 
11
11
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bb-labs/bldr",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "bldr": "./dist/index.js"
@@ -20,12 +20,12 @@
20
20
  "@types/node": "latest"
21
21
  },
22
22
  "peerDependencies": {
23
- "typescript": "^5"
23
+ "typescript": "^5",
24
+ "tsc-alias": "^1.8.8"
24
25
  },
25
26
  "dependencies": {
26
27
  "@bb-labs/tsconfigs": "^0.0.1",
27
28
  "blessed": "^0.1.81",
28
- "chokidar": "^5.0.0",
29
- "tsc-alias": "^1.8.8"
29
+ "chokidar": "^5.0.0"
30
30
  }
31
31
  }