debug-web 1.0.1 → 2.1.0
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.
Potentially problematic release.
This version of debug-web might be problematic. Click here for more details.
- package/CHANGELOG.md +11 -0
- package/LICENSE +1 -1
- package/README.de.md +115 -92
- package/README.es.md +120 -98
- package/README.md +115 -94
- package/README.ru.md +108 -86
- package/README.zh.md +115 -94
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +111 -118
- package/dist/index.mjs +1 -1
- package/package.json +22 -11
package/package.json
CHANGED
|
@@ -1,16 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "debug-web",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "Browser debug utility",
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"description": "Browser debug utility with console styling and persistent levels (ES2018+)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"browser",
|
|
7
|
+
"console",
|
|
7
8
|
"debug",
|
|
9
|
+
"level",
|
|
8
10
|
"web",
|
|
9
|
-
"log"
|
|
11
|
+
"log",
|
|
12
|
+
"logging",
|
|
13
|
+
"debugging",
|
|
14
|
+
"typescript"
|
|
10
15
|
],
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Karlen",
|
|
18
|
+
"email": "ll.karlen@gmail.com"
|
|
19
|
+
},
|
|
11
20
|
"type": "module",
|
|
21
|
+
"sideEffects": false,
|
|
12
22
|
"main": "./dist/index.cjs",
|
|
13
23
|
"module": "./dist/index.mjs",
|
|
24
|
+
"typings": "./dist/index.d.ts",
|
|
14
25
|
"exports": {
|
|
15
26
|
".": {
|
|
16
27
|
"types": "./dist/index.d.ts",
|
|
@@ -29,17 +40,17 @@
|
|
|
29
40
|
"LICENSE"
|
|
30
41
|
],
|
|
31
42
|
"scripts": {
|
|
32
|
-
"build": "rollup -c
|
|
43
|
+
"build": "rollup -c",
|
|
33
44
|
"build:pack": "npm run build && npm pack",
|
|
34
|
-
"lint": "eslint src",
|
|
35
|
-
"lint:fix": "eslint src --fix",
|
|
45
|
+
"lint": "eslint src tests",
|
|
46
|
+
"lint:fix": "eslint src tests --fix",
|
|
36
47
|
"test": "vitest run",
|
|
37
48
|
"test:watch": "vitest --watch",
|
|
38
49
|
"test:coverage": "vitest run --coverage"
|
|
39
50
|
},
|
|
40
51
|
"devDependencies": {
|
|
41
52
|
"@eslint/js": "^9.39.2",
|
|
42
|
-
"@rollup/plugin-terser": "^0.
|
|
53
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
43
54
|
"@rollup/plugin-typescript": "^11.0.0",
|
|
44
55
|
"@types/node": "^20.19.27",
|
|
45
56
|
"@vitest/coverage-istanbul": "^4.0.15",
|
|
@@ -47,7 +58,7 @@
|
|
|
47
58
|
"globals": "^16.5.0",
|
|
48
59
|
"happy-dom": "^20.0.11",
|
|
49
60
|
"jiti": "^2.6.1",
|
|
50
|
-
"rollup": "^
|
|
61
|
+
"rollup": "^4.59.0",
|
|
51
62
|
"rollup-plugin-dts": "6.3.0",
|
|
52
63
|
"ts-node": "^10.9.1",
|
|
53
64
|
"tslib": "^2.8.1",
|
|
@@ -59,9 +70,9 @@
|
|
|
59
70
|
"type": "git",
|
|
60
71
|
"url": "git+https://github.com/Karlen-ll/debug-web.git"
|
|
61
72
|
},
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=10.0.0",
|
|
75
|
+
"npm": ">=6.0.0"
|
|
65
76
|
},
|
|
66
77
|
"license": "MIT",
|
|
67
78
|
"bugs": {
|