@emohk/utils 1.0.2 → 1.0.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 (2) hide show
  1. package/README.md +0 -2
  2. package/package.json +7 -6
package/README.md CHANGED
@@ -58,5 +58,3 @@ To generate documentation:
58
58
  ```bash
59
59
  bun run docs
60
60
  ```
61
-
62
- This project was created using `bun init` in bun v1.3.6. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emohk/utils",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A collection of utility functions for various projects.",
5
5
  "type": "module",
6
6
  "module": "./dist/index.mjs",
@@ -24,16 +24,17 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/bun": "latest",
27
- "prettier": "^3.8.1",
28
- "typedoc": "^0.28.17",
29
- "typedoc-plugin-markdown": "^4.10.0"
27
+ "prettier": "^3.9.5",
28
+ "typedoc": "^0.28.20",
29
+ "typedoc-plugin-markdown": "^4.12.0",
30
+ "typescript": "6.0.3"
30
31
  },
31
32
  "peerDependencies": {
32
- "typescript": "^5.9.3"
33
+ "typescript": "^6.0.0 || ^7.0.0"
33
34
  },
34
35
  "scripts": {
35
36
  "build": "bun run build.ts",
36
- "declare": "tsc index.ts --declaration --emitDeclarationOnly --outDir dist",
37
+ "declare": "tsc --project tsconfig.declarations.json",
37
38
  "docs": "typedoc",
38
39
  "prepublishOnly": "bun run build && bun run declare"
39
40
  },