devink 1.0.4 → 1.0.6
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.
- package/README.md +5 -5
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="https://raw.githubusercontent.com/harrymate22/devink/main/media/logo.png" alt="devink logo" width="
|
|
3
|
-
</p>
|
|
4
|
-
|
|
5
|
-
<p align="center">
|
|
6
|
-
<img src="https://raw.githubusercontent.com/harrymate22/devink/main/media/demo.png" alt="devink demo" width="600" />
|
|
2
|
+
<img src="https://raw.githubusercontent.com/harrymate22/devink/main/media/logo.png" alt="devink logo" width="300" />
|
|
7
3
|
</p>
|
|
8
4
|
|
|
9
5
|
# devink
|
|
@@ -17,6 +13,10 @@
|
|
|
17
13
|
|
|
18
14
|
---
|
|
19
15
|
|
|
16
|
+
<p align="center">
|
|
17
|
+
<img src="https://raw.githubusercontent.com/harrymate22/devink/main/media/demo.png" alt="devink demo" width="600" />
|
|
18
|
+
</p>
|
|
19
|
+
|
|
20
20
|
## 🚀 Features
|
|
21
21
|
|
|
22
22
|
- **Zero Dependencies**: Lightweight and ultra-fast. No bloated `node_modules`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devink",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Fast, lightweight, professional logger built with TypeScript. No dependencies.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -13,7 +13,9 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
|
-
"dist"
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
17
19
|
],
|
|
18
20
|
"engines": {
|
|
19
21
|
"node": ">=18.0.0"
|
|
@@ -41,7 +43,10 @@
|
|
|
41
43
|
],
|
|
42
44
|
"author": "harrymate22",
|
|
43
45
|
"license": "MIT",
|
|
44
|
-
"repository":
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "https://github.com/harrymate22/devink.git"
|
|
49
|
+
},
|
|
45
50
|
"devDependencies": {
|
|
46
51
|
"@eslint/js": "^9.0.0",
|
|
47
52
|
"@types/node": "^20.0.0",
|