app-devtools 0.31.0 → 1.0.1
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/dist/main.d.ts +194 -2
- package/dist/main.js +7019 -2711
- package/package.json +35 -35
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "app-devtools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "",
|
|
5
|
-
"packageManager": "pnpm@6.29.1",
|
|
6
5
|
"license": "MIT",
|
|
7
6
|
"author": "Lucas Santos",
|
|
8
|
-
"repository":
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "github:lucasols/app-devtools"
|
|
10
|
+
},
|
|
9
11
|
"type": "module",
|
|
10
|
-
"main": "./dist/main.
|
|
12
|
+
"main": "./dist/main.js",
|
|
11
13
|
"module": "./dist/main.js",
|
|
12
14
|
"types": "./dist/main.d.ts",
|
|
13
15
|
"files": [
|
|
@@ -16,45 +18,43 @@
|
|
|
16
18
|
"sideEffects": false,
|
|
17
19
|
"exports": {
|
|
18
20
|
".": {
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
+
"types": "./dist/main.d.ts",
|
|
22
|
+
"import": "./dist/main.js"
|
|
21
23
|
}
|
|
22
24
|
},
|
|
23
25
|
"dependencies": {
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"immer": "^
|
|
26
|
+
"@ls-stack/utils": "^3.77.0",
|
|
27
|
+
"@lucasols/utils": "^4.31.0",
|
|
28
|
+
"dayjs": "^1.11.21",
|
|
29
|
+
"immer": "^10.2.0",
|
|
28
30
|
"klona": "^2.0.6",
|
|
29
|
-
"nanoid": "^
|
|
30
|
-
"regexparam": "^
|
|
31
|
-
"solid-js": "^1.
|
|
31
|
+
"nanoid": "^5.1.16",
|
|
32
|
+
"regexparam": "^3.0.0",
|
|
33
|
+
"solid-js": "^1.9.14",
|
|
32
34
|
"solid-styled-components": "^0.28.5",
|
|
33
|
-
"tinykeys": "^1.
|
|
34
|
-
"typescript-styled-plugin": "^0.18.2"
|
|
35
|
+
"tinykeys": "^2.1.0"
|
|
35
36
|
},
|
|
36
37
|
"volta": {
|
|
37
|
-
"node": "
|
|
38
|
+
"node": "24.18.0"
|
|
38
39
|
},
|
|
39
40
|
"devDependencies": {
|
|
40
|
-
"@babel/core": "^7.
|
|
41
|
-
"@
|
|
42
|
-
"@
|
|
43
|
-
"@types/
|
|
44
|
-
"@
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"eslint": "^8.34.0",
|
|
50
|
-
"happy-dom": "^8.7.1",
|
|
51
|
-
"oslu": "^0.9.0",
|
|
41
|
+
"@babel/core": "^7.29.7",
|
|
42
|
+
"@eslint/js": "^9.39.4",
|
|
43
|
+
"@lucasols/eslint-plugin-extended-lint": "^1.6.0",
|
|
44
|
+
"@types/node": "^24.13.2",
|
|
45
|
+
"@vitest/ui": "^4.1.10",
|
|
46
|
+
"babel-plugin-solid-labels": "^0.15.1",
|
|
47
|
+
"eslint": "^9.39.4",
|
|
48
|
+
"happy-dom": "^20.10.6",
|
|
49
|
+
"oslu": "^0.22.1",
|
|
52
50
|
"tsm": "^2.3.0",
|
|
53
|
-
"tsup": "^
|
|
54
|
-
"typescript": "
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
51
|
+
"tsup": "^8.5.1",
|
|
52
|
+
"typescript": "5.9.3",
|
|
53
|
+
"typescript-eslint": "^8.63.0",
|
|
54
|
+
"typescript-styled-plugin": "^0.18.3",
|
|
55
|
+
"vite": "^8.1.3",
|
|
56
|
+
"vite-plugin-solid": "^2.11.12",
|
|
57
|
+
"vitest": "^4.1.10"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"dev": "vite",
|
|
@@ -62,12 +62,12 @@
|
|
|
62
62
|
"test:run": "echo 'no tests'",
|
|
63
63
|
"preview": "vite preview",
|
|
64
64
|
"tsc": "tsc -p tsconfig.prod.json",
|
|
65
|
-
"eslint": "eslint
|
|
65
|
+
"eslint": "eslint src --max-warnings 0",
|
|
66
66
|
"lint": "pnpm eslint && pnpm tsc",
|
|
67
67
|
"tsc:w": "tsc -w -p tsconfig.prod.json",
|
|
68
68
|
"convert-har": "tsm scripts/filterFetchRequests.ts",
|
|
69
69
|
"build": "pnpm test:run && pnpm lint && pnpm build:no-test",
|
|
70
70
|
"build:no-test": "vite build && tsup --dts-only",
|
|
71
|
-
"
|
|
71
|
+
"pre-publish": "pnpm run build"
|
|
72
72
|
}
|
|
73
73
|
}
|