@opensearch-project/agent-health 0.0.1

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/index.js +13 -0
  2. package/package.json +22 -0
package/index.js ADDED
@@ -0,0 +1,13 @@
1
+ /**
2
+ * SPDX-License-Identifier: Apache-2.0
3
+ *
4
+ * The OpenSearch Contributors require contributions made to
5
+ * this file be licensed under the Apache-2.0 license or a
6
+ * compatible open source license.
7
+ */
8
+
9
+ 'use strict';
10
+
11
+ module.exports = {
12
+ version: require('./package.json').version
13
+ };
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@opensearch-project/agent-health",
3
+ "version": "0.0.1",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/your-username/your-repo-name.git"
12
+ },
13
+ "keywords": [],
14
+ "license": "Apache-2.0",
15
+ "bugs": {
16
+ "url": "https://github.com/your-username/your-repo-name/issues"
17
+ },
18
+ "homepage": "https://github.com/your-username/your-repo-name#readme",
19
+ "engines": {
20
+ "node": ">=18.0.0"
21
+ }
22
+ }