@kyvrixon/utils 0.0.1 → 0.0.2

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 +7 -1
  2. package/package.json +9 -2
package/README.md CHANGED
@@ -1 +1,7 @@
1
- General utility files I use for alot of projects! Does not include any larger scale items, just the little things
1
+ # Utils
2
+
3
+ General utility files I use for alot of projects! Does not include any larger scale items, just the little things
4
+
5
+ ```bash
6
+ bun install @kyvrixon/utils@latest
7
+ ```
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@kyvrixon/utils",
3
- "module": "index.js",
4
- "version": "0.0.1",
3
+ "main": "./dist/index.js",
4
+ "version": "0.0.2",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "files": [
8
8
  "dist"
9
9
  ],
10
10
  "packageManager": "bun@1.3.6",
11
+ "types": "./dist/types/index.d.ts",
11
12
  "devDependencies": {
12
13
  "@types/bun": "1.3.6"
13
14
  },
@@ -16,5 +17,11 @@
16
17
  },
17
18
  "dependencies": {
18
19
  "chalk": "^5.6.2"
20
+ },
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/types/index.d.ts",
24
+ "import": "./dist/index.js"
25
+ }
19
26
  }
20
27
  }