@larose-ui/devtools 0.1.0 → 0.1.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/README.md +58 -0
- package/package.json +14 -9
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# @larose-ui/devtools
|
|
2
|
+
|
|
3
|
+
> In-app runtime inspector for development.
|
|
4
|
+
|
|
5
|
+
Part of **[laRose UI](https://github.com/hamdymohamedak/larose-ui)** — the UI Operating System for modern SaaS applications.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @larose-ui/devtools
|
|
11
|
+
# or
|
|
12
|
+
pnpm add @larose-ui/devtools
|
|
13
|
+
# or
|
|
14
|
+
yarn add @larose-ui/devtools
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
**Peer dependency:** `react >=18`
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## Quick start
|
|
22
|
+
|
|
23
|
+
```tsx
|
|
24
|
+
import { DevToolsProvider } from '@larose-ui/devtools';
|
|
25
|
+
|
|
26
|
+
<LaRoseProvider>
|
|
27
|
+
<DevToolsProvider />
|
|
28
|
+
<App />
|
|
29
|
+
</LaRoseProvider>
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Features
|
|
33
|
+
|
|
34
|
+
- Runtime context panel (session, tenant, permissions)
|
|
35
|
+
- Event timeline from the runtime bus
|
|
36
|
+
- Component inspector with React fiber introspection
|
|
37
|
+
- Journey tab with rage-click analysis
|
|
38
|
+
|
|
39
|
+
## Related packages
|
|
40
|
+
|
|
41
|
+
| Layer | Packages |
|
|
42
|
+
|-------|----------|
|
|
43
|
+
| Foundation | `@larose-ui/core`, `@larose-ui/tokens`, `@larose-ui/react` |
|
|
44
|
+
| Runtime | `@larose-ui/runtime`, `@larose-ui/network`, `@larose-ui/offline` |
|
|
45
|
+
| Intelligence | `@larose-ui/data`, `@larose-ui/forms`, `@larose-ui/permissions` |
|
|
46
|
+
| Platform | `@larose-ui/observability`, `@larose-ui/enterprise`, `@larose-ui/ai` |
|
|
47
|
+
|
|
48
|
+
## Documentation
|
|
49
|
+
|
|
50
|
+
- [Monorepo README](https://github.com/hamdymohamedak/larose-ui#readme)
|
|
51
|
+
- [Package docs](https://github.com/hamdymohamedak/larose-ui/blob/main/docs/devtools/DEVTOOLS_2.md)
|
|
52
|
+
- [Architecture](https://github.com/hamdymohamedak/larose-ui/blob/main/docs/architecture/ARCHITECTURE.md)
|
|
53
|
+
- [Roadmap](https://github.com/hamdymohamedak/larose-ui/blob/main/docs/ROADMAP.md)
|
|
54
|
+
- [Report an issue](https://github.com/hamdymohamedak/larose-ui/issues)
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
MIT © [laRose UI](https://github.com/hamdymohamedak/larose-ui)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@larose-ui/devtools",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "In-app DevTools inspector for laRose UI platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -13,16 +13,17 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
|
-
"dist"
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
17
18
|
],
|
|
18
19
|
"dependencies": {
|
|
19
|
-
"@larose-ui/core": "0.1.
|
|
20
|
-
"@larose-ui/observability": "0.1.
|
|
21
|
-
"@larose-ui/runtime": "0.1.
|
|
20
|
+
"@larose-ui/core": "0.1.1",
|
|
21
|
+
"@larose-ui/observability": "0.1.1",
|
|
22
|
+
"@larose-ui/runtime": "0.1.1"
|
|
22
23
|
},
|
|
23
24
|
"peerDependencies": {
|
|
24
25
|
"react": ">=18",
|
|
25
|
-
"@larose-ui/permissions": "0.1.
|
|
26
|
+
"@larose-ui/permissions": "0.1.1"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|
|
28
29
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -35,8 +36,8 @@
|
|
|
35
36
|
"tsup": "^8.3.5",
|
|
36
37
|
"typescript": "^5.7.2",
|
|
37
38
|
"vitest": "^2.1.8",
|
|
38
|
-
"@larose-ui/
|
|
39
|
-
"@larose-ui/
|
|
39
|
+
"@larose-ui/testing": "0.1.1",
|
|
40
|
+
"@larose-ui/permissions": "0.1.1"
|
|
40
41
|
},
|
|
41
42
|
"license": "MIT",
|
|
42
43
|
"publishConfig": {
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
},
|
|
45
46
|
"repository": {
|
|
46
47
|
"type": "git",
|
|
47
|
-
"url": "https://github.com/larose-ui
|
|
48
|
+
"url": "git+https://github.com/hamdymohamedak/larose-ui.git",
|
|
48
49
|
"directory": "packages/devtools"
|
|
49
50
|
},
|
|
50
51
|
"keywords": [
|
|
@@ -54,6 +55,10 @@
|
|
|
54
55
|
"design-system",
|
|
55
56
|
"saas"
|
|
56
57
|
],
|
|
58
|
+
"homepage": "https://github.com/hamdymohamedak/larose-ui/blob/main/packages/devtools#readme",
|
|
59
|
+
"bugs": {
|
|
60
|
+
"url": "https://github.com/hamdymohamedak/larose-ui/issues"
|
|
61
|
+
},
|
|
57
62
|
"scripts": {
|
|
58
63
|
"build": "tsup",
|
|
59
64
|
"test": "vitest run",
|