motebit 0.7.0 → 1.0.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 +1 -1
- package/NOTICE +19 -0
- package/README.md +10 -0
- package/dist/index.js +39557 -26420
- package/package.json +44 -23
- package/schema/motebit-yaml-v1.json +213 -0
package/LICENSE
CHANGED
|
@@ -58,7 +58,7 @@ Source License:
|
|
|
58
58
|
spec/ Protocol specifications (MIT)
|
|
59
59
|
packages/protocol/ @motebit/protocol — network protocol types (MIT)
|
|
60
60
|
packages/sdk/ @motebit/sdk — full type vocabulary (MIT)
|
|
61
|
-
packages/
|
|
61
|
+
packages/crypto/ @motebit/crypto — signing and verification (MIT)
|
|
62
62
|
packages/create-motebit/ create-motebit — identity scaffolding CLI (MIT)
|
|
63
63
|
packages/github-action/ motebit-verify GitHub Action (MIT)
|
|
64
64
|
|
package/NOTICE
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Motebit
|
|
2
|
+
Copyright 2026 Motebit, Inc.
|
|
3
|
+
|
|
4
|
+
This product includes software developed at Motebit, Inc. (https://motebit.com).
|
|
5
|
+
|
|
6
|
+
The permissive-floor packages (the protocol, SDK, cryptographic primitives,
|
|
7
|
+
platform-attestation verifier leaves, scaffolding CLI, and GitHub Action) are
|
|
8
|
+
licensed under the Apache License, Version 2.0. See LICENSE files in each
|
|
9
|
+
`packages/*/` subdirectory and in `spec/` for the full license text.
|
|
10
|
+
|
|
11
|
+
The remaining packages, apps, and services are licensed under the Business
|
|
12
|
+
Source License 1.1 and convert to the Apache License, Version 2.0 four years
|
|
13
|
+
after each version's first public release. See `LICENSE` at the repository
|
|
14
|
+
root and `LICENSING.md` for the full license boundary.
|
|
15
|
+
|
|
16
|
+
"Motebit" is a trademark of Motebit, Inc. The licenses granted here cover
|
|
17
|
+
this software only, not Motebit trademarks, logos, or branding. Use of
|
|
18
|
+
Motebit branding in a way that suggests endorsement or affiliation requires
|
|
19
|
+
written permission.
|
package/README.md
CHANGED
|
@@ -117,6 +117,16 @@ Run `motebit doctor` to diagnose issues after install.
|
|
|
117
117
|
|
|
118
118
|
See [docs.motebit.com](https://docs.motebit.com) for full documentation.
|
|
119
119
|
|
|
120
|
+
## Related
|
|
121
|
+
|
|
122
|
+
- [`@motebit/protocol`](https://www.npmjs.com/package/@motebit/protocol) — wire-format types (Apache-2.0, zero deps)
|
|
123
|
+
- [`@motebit/sdk`](https://www.npmjs.com/package/@motebit/sdk) — developer contract for building Motebit-powered agents
|
|
124
|
+
- [`@motebit/crypto`](https://www.npmjs.com/package/@motebit/crypto) — signing and verification primitives (Apache-2.0, zero deps)
|
|
125
|
+
- [`@motebit/verifier`](https://www.npmjs.com/package/@motebit/verifier) — offline third-party verifier library (Apache-2.0)
|
|
126
|
+
- [`create-motebit`](https://www.npmjs.com/package/create-motebit) — scaffold a signed agent identity
|
|
127
|
+
|
|
120
128
|
## License
|
|
121
129
|
|
|
122
130
|
BSL-1.1 — see [LICENSE](./LICENSE).
|
|
131
|
+
|
|
132
|
+
"Motebit" is a trademark. The BSL-1.1 License grants rights to this software, not to any Motebit trademarks, logos, or branding. You may not use Motebit branding in a way that suggests endorsement or affiliation without written permission.
|