@nekzus/liop-studio 1.0.0-alpha.0 → 1.0.0-alpha.3
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 +9 -0
- package/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/server/index.js +1 -1
- package/dist/server/index.js.map +1 -1
- package/package.json +30 -1
- package/ui/dist/assets/index-BMzlkxln.css +1 -0
- package/ui/dist/assets/index-DCN4NnOS.js +275 -0
- package/ui/dist/favicon.svg +14 -0
- package/ui/dist/icons.svg +24 -0
- package/ui/dist/index.html +14 -0
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @nekzus/liop-studio
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@nekzus/liop-studio)
|
|
4
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
5
|
+
[](https://nekzus-32.mintlify.app/)
|
|
6
|
+
|
|
3
7
|
> **LIOP Sovereign Studio & Mesh Scanner**: Developer studio, interactive testbed, and network scanner for the Logic-Injection-on-Origin Protocol (LIOP) and Model Context Protocol (MCP).
|
|
4
8
|
|
|
5
9
|
---
|
|
@@ -40,5 +44,10 @@ npx @nekzus/liop-studio scan /ip4/127.0.0.1/tcp/4000/p2p/12D3KooW...
|
|
|
40
44
|
|
|
41
45
|
---
|
|
42
46
|
|
|
47
|
+
## 📚 Documentation
|
|
48
|
+
For complete guides, API references, and architecture specifications, visit the [official LIOP documentation](https://nekzus-32.mintlify.app/).
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
43
52
|
## 📄 License
|
|
44
53
|
Apache-2.0. Copyright 2026 Nekzus Solutions and contributors.
|
package/dist/cli/index.js
CHANGED
|
@@ -1892,7 +1892,7 @@ function createStudioServer(options = {}) {
|
|
|
1892
1892
|
app.use(
|
|
1893
1893
|
"/*",
|
|
1894
1894
|
serveStatic({
|
|
1895
|
-
root:
|
|
1895
|
+
root: distPath,
|
|
1896
1896
|
rewriteRequestPath: (pathStr) => {
|
|
1897
1897
|
if (!pathStr.includes(".") && !pathStr.startsWith("/api") && pathStr !== "/health") {
|
|
1898
1898
|
return "/index.html";
|