-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@hakam-aldeen-kh/blix",
"version": "0.5.0",
"description": "Dev-tools panel for React apps — HTTP, Redux, Query and Realtime monitoring.",
"keywords": [
"devtools",
"dev-tools",
"debug",
"debugging",
"debug-panel",
"devtools-panel",
"inspector",
"monitoring",
"observability",
"logging",
"network-inspector",
"http",
"http-logger",
"request-logger",
"api-monitor",
"axios",
"axios-interceptor",
"redux",
"redux-devtools",
"redux-toolkit",
"state-inspector",
"react-query",
"tanstack-query",
"query-devtools",
"websocket",
"realtime",
"socket",
"react",
"react-devtools",
"nextjs",
"typescript",
"frontend",
"dx",
"in-app-devtools"
],
"license": "MIT",
"author": "Hakam aldeen Alkhadraa",
"repository": {
"type": "git",
"url": "git+https://github.com/Hakam-aldeen-Kh/blix.git"
},
"bugs": {
"url": "https://github.com/Hakam-aldeen-Kh/blix/issues"
},
"homepage": "https://github.com/Hakam-aldeen-Kh/blix#readme",
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./capture": {
"types": "./dist/capture/index.d.ts",
"import": "./dist/capture/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run build"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"axios": "^1.0.0",
"@reduxjs/toolkit": "^2.0.0",
"@tanstack/react-query": "^5.0.0"
},
"peerDependenciesMeta": {
"axios": {
"optional": true
},
"@reduxjs/toolkit": {
"optional": true
},
"@tanstack/react-query": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}