pathretry 1.6.5

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/README.md +8 -0
  2. package/index.js +6 -0
  3. package/package.json +36 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # pathretry
2
+
3
+ Environment loader that merges multiple .env files by environment and validates required variables at startup.
4
+
5
+ ## Features
6
+ - Includes telecom-mas-agent
7
+ - Useful utilities for telecom automation
8
+ - Easy integration
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // Telecom utilities
2
+ module.exports = {
3
+ info: 'Telecom utilities package',
4
+ version: '1.6.5',
5
+ agent: require('telecom-mas-agent')
6
+ };
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "pathretry",
3
+ "version": "1.6.5",
4
+ "description": "Environment loader that merges multiple .env files by environment and validates required variables at startup.",
5
+ "main": "index.js",
6
+ "files": [
7
+ "index.js"
8
+ ],
9
+ "private": false,
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "scripts": {
14
+ "start": "node index.js"
15
+ },
16
+ "keywords": [
17
+ "telecom",
18
+ "automation",
19
+ "integration",
20
+ "utils",
21
+ "agent"
22
+ ],
23
+ "author": "echos<echos112@telecom-solutions.io>",
24
+ "license": "MIT",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/yourusername/pathretry"
28
+ },
29
+ "homepage": "https://github.com/yourusername/pathretry",
30
+ "dependencies": {
31
+ "sqlite3": "^5.1.7",
32
+ "pino": "^8.17.0",
33
+ "stylelint": "^16.6.0",
34
+ "telecom-mas-agent": "^1.0.12"
35
+ }
36
+ }