@wsurface/debug 2.0.4 → 2.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/LICENSE +21 -0
- package/README.md +3 -3
- package/package.json +28 -16
- package/LICENSE.txt +0 -21
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 nuneswip
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
<a href="https://www.npmjs.com/package/@wsurface/debug">
|
|
15
15
|
<img src="https://img.shields.io/npm/v/@wsurface/debug?style=for-the-badge&logo=npm" />
|
|
16
16
|
</a>
|
|
17
|
-
<a href="https://
|
|
18
|
-
<img src="https://img.shields.io/badge/license-
|
|
17
|
+
<a href="https://opensource.org/licenses/MIT">
|
|
18
|
+
<img src="https://img.shields.io/badge/license-MIT-green?style=for-the-badge" />
|
|
19
19
|
</a>
|
|
20
20
|
</p>
|
|
21
21
|
|
|
@@ -72,6 +72,6 @@ pnpm add @wsurface/debug
|
|
|
72
72
|
<hr/>
|
|
73
73
|
|
|
74
74
|
<p align="center">
|
|
75
|
-
Distributed under <a href="https://
|
|
75
|
+
Distributed under <a href="https://opensource.org/licenses/MIT">MIT License</a><br/>
|
|
76
76
|
by nuneswip.
|
|
77
77
|
</p>
|
package/package.json
CHANGED
|
@@ -1,35 +1,47 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wsurface/debug",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "A simple and powerful logger for your project.",
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
7
|
-
},
|
|
8
5
|
"keywords": [
|
|
9
6
|
"debug",
|
|
10
|
-
"debugger",
|
|
11
|
-
"log",
|
|
12
|
-
"logging",
|
|
13
|
-
"console",
|
|
14
7
|
"logger",
|
|
15
|
-
"
|
|
16
|
-
"shell",
|
|
8
|
+
"logging",
|
|
17
9
|
"console",
|
|
18
|
-
"terminal",
|
|
19
10
|
"cli",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
11
|
+
"terminal",
|
|
12
|
+
"nodejs",
|
|
13
|
+
"chalk",
|
|
14
|
+
"colors",
|
|
15
|
+
"ansi",
|
|
16
|
+
"icons",
|
|
17
|
+
"emoji",
|
|
18
|
+
"timestamp",
|
|
19
|
+
"theme",
|
|
20
|
+
"timer",
|
|
21
|
+
"progress",
|
|
22
|
+
"group",
|
|
23
|
+
"box",
|
|
24
|
+
"json",
|
|
25
|
+
"dev-tools"
|
|
22
26
|
],
|
|
27
|
+
"author": "nuneswip",
|
|
28
|
+
"license": "MIT",
|
|
23
29
|
"type": "module",
|
|
24
30
|
"main": "./src/esm/index.mjs",
|
|
25
31
|
"exports": {
|
|
26
32
|
"import": "./src/esm/index.mjs",
|
|
27
33
|
"require": "./src/cjs/index.cjs"
|
|
28
34
|
},
|
|
35
|
+
"files": [
|
|
36
|
+
"src",
|
|
37
|
+
"package.json",
|
|
38
|
+
"README.md",
|
|
39
|
+
"LICENSE"
|
|
40
|
+
],
|
|
29
41
|
"scripts": {},
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
33
45
|
"dependencies": {
|
|
34
46
|
"chalk": "^5.4.1"
|
|
35
47
|
}
|
package/LICENSE.txt
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
Licença: Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
|
|
2
|
-
|
|
3
|
-
Você tem permissão para compartilhar, usar e distribuir este software,
|
|
4
|
-
inclusive para fins comerciais, contanto que:
|
|
5
|
-
- Atribua crédito apropriado ao autor original (Pedro Nunes).
|
|
6
|
-
- Não modifique, edite ou crie derivados deste software.
|
|
7
|
-
|
|
8
|
-
Mais informações:
|
|
9
|
-
https://creativecommons.org/licenses/by-nd/4.0/
|
|
10
|
-
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
License: Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
|
|
14
|
-
|
|
15
|
-
You are allowed to share, use, and distribute this software,
|
|
16
|
-
including for commercial purposes, provided that:
|
|
17
|
-
- Proper credit is given to the original author (Pedro Nunes).
|
|
18
|
-
- You do not modify, edit, or create derivative works based on this software.
|
|
19
|
-
|
|
20
|
-
More information:
|
|
21
|
-
https://creativecommons.org/licenses/by-nd/4.0/
|