@trust402/sdk 0.1.9 → 0.1.10

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.
Files changed (2) hide show
  1. package/LICENSE +80 -0
  2. package/package.json +11 -11
package/LICENSE ADDED
@@ -0,0 +1,80 @@
1
+ Business Source License 1.1
2
+
3
+ License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved.
4
+ "Business Source License" is a trademark of MariaDB Corporation Ab.
5
+
6
+ Parameters
7
+
8
+ Licensor: FRAME00 Inc.
9
+ Additional Use Grant: You may use the Licensed Work for non-production
10
+ purposes, including but not limited to evaluation,
11
+ testing, research, and learning, including in
12
+ hackathons, academic settings, and personal projects,
13
+ provided that such use does not constitute a
14
+ competing commercial service.
15
+ Licensed Work: lemmaoracle/lemma
16
+ (the software in this repository, excluding packages
17
+ that contain their own LICENSE file)
18
+ Change Date: 2030-05-01
19
+
20
+ Change License: Apache License, Version 2.0
21
+
22
+ Notice:
23
+
24
+ The Licensed Work is provided under the Business Source License 1.1
25
+ (BSL 1.1). You may not use the Licensed Work except in compliance with
26
+ the BSL 1.1.
27
+
28
+ You may produce and distribute the Licensed Work, in whole or in part,
29
+ in Source or Object form, subject to the following conditions:
30
+
31
+ 1. You must give any other recipients of the Licensed Work a copy of
32
+ this License; and
33
+
34
+ 2. You must cause any modified files to carry prominent notices stating
35
+ that You changed the files; and
36
+
37
+ 3. You must retain, in the Source form of any Licensed Work that You
38
+ distribute, all copyright, patent, trademark, and attribution
39
+ notices from the Source form of the Licensed Work, excluding those
40
+ notices that do not pertain to any part of the Licensed Work; and
41
+
42
+ 4. You may not use the Licensed Work to create a competing commercial
43
+ service. A "competing commercial service" is a product or service
44
+ that provides substantially the same functionality as the Licensed
45
+ Work to third parties for commercial gain.
46
+
47
+ 5. After the Change Date, the Licensed Work will be licensed under the
48
+ Change License indicated above, and You may exercise the rights
49
+ granted under the Change License without restriction.
50
+
51
+ THE LICENSED WORK IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
52
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
53
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
54
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
55
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
56
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
57
+ LICENSED WORK OR THE USE OR OTHER DEALINGS IN THE LICENSED WORK.
58
+
59
+ ---
60
+
61
+ This repository contains multiple packages under the `packages/` directory.
62
+ Each package may have its own LICENSE file. If a package contains its own
63
+ LICENSE file, that license takes precedence over this root LICENSE for the
64
+ contents of that package directory.
65
+
66
+ Package-specific licenses:
67
+
68
+ BUSL-1.1 (this license, with the same Change Date and Change License):
69
+ - packages/contracts
70
+ - packages/relay
71
+ - packages/passthrough
72
+
73
+ Apache-2.0:
74
+ - packages/sdk
75
+ - packages/spec
76
+ - packages/mcp
77
+ - packages/parser
78
+ - packages/x402
79
+
80
+ (packages/web is private and not distributed; all rights reserved.)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trust402/sdk",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,17 +24,11 @@
24
24
  "publishConfig": {
25
25
  "access": "public"
26
26
  },
27
- "scripts": {
28
- "build": "tsc -p tsconfig.json",
29
- "type-check": "tsc -p tsconfig.json --noEmit",
30
- "lint": "eslint 'src/**/*.ts'",
31
- "test": "vitest run"
32
- },
33
27
  "dependencies": {
34
- "@lemmaoracle/sdk": "workspace:*",
35
- "@lemmaoracle/spec": "workspace:*",
36
28
  "@noble/hashes": "^1.7.0",
37
- "poseidon-lite": "^0.2.0"
29
+ "poseidon-lite": "^0.2.0",
30
+ "@lemmaoracle/sdk": "0.0.36",
31
+ "@lemmaoracle/spec": "0.0.35"
38
32
  },
39
33
  "devDependencies": {
40
34
  "@typescript-eslint/eslint-plugin": "^8.56.1",
@@ -44,5 +38,11 @@
44
38
  "eslint-plugin-functional": "^9.0.4",
45
39
  "typescript": "^5.5.0",
46
40
  "vitest": "^2.1.0"
41
+ },
42
+ "scripts": {
43
+ "build": "tsc -p tsconfig.json",
44
+ "type-check": "tsc -p tsconfig.json --noEmit",
45
+ "lint": "eslint 'src/**/*.ts'",
46
+ "test": "vitest run"
47
47
  }
48
- }
48
+ }