@walkeros/explorer 0.0.7 → 0.3.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.
- package/LICENSE +42 -0
- package/README.md +646 -374
- package/dist/chunk-P5UDSGZL.mjs +18485 -0
- package/dist/chunk-P5UDSGZL.mjs.map +1 -0
- package/dist/index.d.cts +1248 -0
- package/dist/index.d.ts +1185 -180
- package/dist/index.js +31721 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +12983 -2300
- package/dist/index.mjs.map +1 -1
- package/dist/monaco-types-T3WXA7KH.mjs +34 -0
- package/dist/monaco-types-T3WXA7KH.mjs.map +1 -0
- package/dist/styles.css +4923 -0
- package/package.json +96 -55
- package/dist/examples/destination.html +0 -143
- package/dist/examples/index.html +0 -110
- package/dist/examples/livecode-js.html +0 -396
- package/dist/explorer.js +0 -2996
- package/dist/explorer.js.map +0 -1
- package/dist/index.cjs +0 -2528
- package/dist/index.cjs.map +0 -1
- package/dist/index.d.mts +0 -243
- package/serve.js +0 -52
package/LICENSE
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# walkerOS Explorer License Agreement
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 elbwalker GmbH.
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
The walkerOS Explorer software package and associated files (the “Software”) are
|
|
7
|
+
proprietary to elbwalker GmbH.
|
|
8
|
+
This license applies only to this Software and does not cover other parts of
|
|
9
|
+
walkerOS that may be released under different terms.
|
|
10
|
+
|
|
11
|
+
## License Grant
|
|
12
|
+
|
|
13
|
+
elbwalker GmbH grants you a limited, non-exclusive, non-transferable, and
|
|
14
|
+
revocable license to install and use the Software solely for evaluation or
|
|
15
|
+
internal purposes, subject to the terms of this agreement.
|
|
16
|
+
|
|
17
|
+
## Restrictions
|
|
18
|
+
|
|
19
|
+
You may **not**:
|
|
20
|
+
|
|
21
|
+
- use the Software for any commercial purpose without a valid commercial license
|
|
22
|
+
from elbwalker GmbH,
|
|
23
|
+
- copy, modify, merge, publish, distribute, sublicense, or sell copies of the
|
|
24
|
+
Software,
|
|
25
|
+
- reverse engineer, decompile, or disassemble any part of the Software,
|
|
26
|
+
- remove or alter any proprietary notices or labels.
|
|
27
|
+
|
|
28
|
+
## Ownership
|
|
29
|
+
|
|
30
|
+
elbwalker GmbH retains all rights, title, and interest in and to the Software.
|
|
31
|
+
No ownership rights are transferred to you.
|
|
32
|
+
|
|
33
|
+
## Disclaimer
|
|
34
|
+
|
|
35
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
36
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
37
|
+
FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
|
|
38
|
+
|
|
39
|
+
## Contact
|
|
40
|
+
|
|
41
|
+
To obtain a commercial license, please contact:
|
|
42
|
+
[hello@walkeros.com](mailto:hello@walkeros.com)
|