@bedrock-apis/env-types 1.0.0-beta.2 → 1.0.0-beta.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 (3) hide show
  1. package/LICENSE +26 -21
  2. package/lib.d.ts +22 -0
  3. package/package.json +11 -3
package/LICENSE CHANGED
@@ -1,21 +1,26 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Bedrock APIs
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ Copyright 2026 Bedrock APIs
8
+
9
+ Licensed under the Apache License, Version 2.0 (the "License");
10
+ you may not use this file except in compliance with the License.
11
+ You may obtain a copy of the License at
12
+
13
+ http://www.apache.org/licenses/LICENSE-2.0
14
+
15
+ Unless required by applicable law or agreed to in writing, software
16
+ distributed under the License is distributed on an "AS IS" BASIS,
17
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ See the License for the specific language governing permissions and
19
+ limitations under the License.
20
+
21
+ ---
22
+
23
+ This project includes content derived from Microsoft's TypeScript standard library declaration files (`lib.es*.d.ts`),
24
+ which are licensed under the Apache License, Version 2.0.
25
+
26
+ Modifications: Portions of the original files have been removed to include only the declarations used by this project.
package/lib.d.ts CHANGED
@@ -1,5 +1,27 @@
1
+
2
+ /*! *****************************************************************************
3
+ This file includes content derived from Microsoft's TypeScript standard library
4
+ declaration files (lib.es*.d.ts), licensed under the Apache License, Version 2.0.
5
+
6
+ Modifications include: Portions of the original files have been removed to
7
+ include only the declarations used by this project.
8
+
9
+ Licensed under the Apache License, Version 2.0 (the "License");
10
+ you may not use this file except in compliance with the License.
11
+ You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
12
+
13
+ THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
15
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
16
+ MERCHANTABILITY OR NON-INFRINGEMENT.
17
+
18
+ See the Apache Version 2.0 License for specific language governing permissions
19
+ and limitations under the License.
20
+ ***************************************************************************** */
21
+
1
22
  /// <reference no-default-lib="true"/>
2
23
 
24
+
3
25
  interface Map<K, V> {
4
26
  clear(): void;
5
27
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bedrock-apis/env-types",
3
- "version": "1.0.0-beta.2",
3
+ "version": "1.0.0-beta.3",
4
4
  "description": "A collection of environment-specific TypeScript type definitions for engines with non-standard versioning and selective feature support across versions.",
5
5
  "main": "",
6
6
  "types": "lib.d.ts",
@@ -17,6 +17,14 @@
17
17
  "./package.json"
18
18
  ],
19
19
  "author": "bedrock-apis",
20
- "license": "MIT",
21
- "packageManager": "pnpm@10.20.0"
20
+ "license": "Apache-2.0",
21
+ "packageManager": "pnpm@10.20.0",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/bedrock-apis/env-types.git"
25
+ },
26
+ "bugs": {
27
+ "url": "https://github.com/bedrock-apis/env-types/issues"
28
+ },
29
+ "homepage": "https://github.com/bedrock-apis/env-types#readme"
22
30
  }