@airmcp-dev/meter 0.1.2 → 0.1.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.
Files changed (2) hide show
  1. package/LICENSE +96 -2
  2. package/package.json +2 -2
package/LICENSE CHANGED
@@ -1,7 +1,103 @@
1
+
1
2
  Apache License
2
3
  Version 2.0, January 2004
3
4
  http://www.apache.org/licenses/
4
5
 
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity.
19
+
20
+ "You" (or "Your") shall mean an individual or Legal Entity
21
+ exercising permissions granted by this License.
22
+
23
+ "Source" form shall mean the preferred form for making modifications,
24
+ including but not limited to software source code, documentation
25
+ source, and configuration files.
26
+
27
+ "Object" form shall mean any form resulting from mechanical
28
+ transformation or translation of a Source form, including but
29
+ not limited to compiled object code, generated documentation,
30
+ and conversions to other media types.
31
+
32
+ "Work" shall mean the work of authorship, whether in Source or
33
+ Object form, made available under the License.
34
+
35
+ "Derivative Works" shall mean any work, whether in Source or Object
36
+ form, that is based on (or derived from) the Work.
37
+
38
+ "Contribution" shall mean any work of authorship submitted to the
39
+ Licensor for inclusion in the Work.
40
+
41
+ "Contributor" shall mean Licensor and any Legal Entity on behalf
42
+ of whom a Contribution has been received by the Licensor.
43
+
44
+ 2. Grant of Copyright License. Subject to the terms and conditions of
45
+ this License, each Contributor hereby grants to You a perpetual,
46
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
47
+ copyright license to reproduce, prepare Derivative Works of,
48
+ publicly display, publicly perform, sublicense, and distribute the
49
+ Work and such Derivative Works in Source or Object form.
50
+
51
+ 3. Grant of Patent License. Subject to the terms and conditions of
52
+ this License, each Contributor hereby grants to You a perpetual,
53
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
54
+ patent license to make, have made, use, offer to sell, sell,
55
+ import, and otherwise transfer the Work.
56
+
57
+ 4. Redistribution. You may reproduce and distribute copies of the
58
+ Work or Derivative Works thereof in any medium, with or without
59
+ modifications, and in Source or Object form, provided that You
60
+ meet the following conditions:
61
+
62
+ (a) You must give any other recipients of the Work or
63
+ Derivative Works a copy of this License; and
64
+
65
+ (b) You must cause any modified files to carry prominent notices
66
+ stating that You changed the files; and
67
+
68
+ (c) You must retain, in the Source form of any Derivative Works
69
+ that You distribute, all copyright, patent, trademark, and
70
+ attribution notices from the Source form of the Work; and
71
+
72
+ (d) If the Work includes a "NOTICE" text file, You must include
73
+ a readable copy of the attribution notices contained within
74
+ such NOTICE file.
75
+
76
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
77
+ any Contribution intentionally submitted for inclusion in the Work
78
+ by You to the Licensor shall be under the terms and conditions of
79
+ this License, without any additional terms or conditions.
80
+
81
+ 6. Trademarks. This License does not grant permission to use the trade
82
+ names, trademarks, service marks, or product names of the Licensor.
83
+
84
+ 7. Disclaimer of Warranty. Unless required by applicable law or
85
+ agreed to in writing, Licensor provides the Work on an "AS IS"
86
+ BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND.
87
+
88
+ 8. Limitation of Liability. In no event shall any Contributor be
89
+ liable to You for damages, including any direct, indirect, special,
90
+ incidental, or consequential damages of any character arising as a
91
+ result of this License or out of the use or inability to use the Work.
92
+
93
+ 9. Accepting Warranty or Additional Liability. You may choose to offer,
94
+ and charge a fee for, acceptance of support, warranty, indemnity,
95
+ or other liability obligations consistent with this License.
96
+
97
+ END OF TERMS AND CONDITIONS
98
+
99
+ Copyright 2026 CodePedia Labs
100
+
5
101
  Licensed under the Apache License, Version 2.0 (the "License");
6
102
  you may not use this file except in compliance with the License.
7
103
  You may obtain a copy of the License at
@@ -13,5 +109,3 @@
13
109
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
110
  See the License for the specific language governing permissions and
15
111
  limitations under the License.
16
-
17
- Copyright 2026 CodePedia Labs (labs@codepedia.kr)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airmcp-dev/meter",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "MCP performance metering — 7-Layer classification, token cost tracking, metrics export",
5
5
  "type": "module",
6
6
  "files": ["dist", "README.md", "LICENSE"],
@@ -15,7 +15,7 @@
15
15
  "lint": "tsc --noEmit"
16
16
  },
17
17
  "dependencies": {
18
- "@airmcp-dev/core": "^0.1.2"
18
+ "@airmcp-dev/core": "^0.1.3"
19
19
  },
20
20
  "devDependencies": {
21
21
  "typescript": "^5.5.0",