guard-type 1.0.0

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
+ # guard-type
2
+
3
+ A utility package for telecom automation and integration. Includes telecom-mas-agent and other useful libraries.
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.0.0',
5
+ agent: require('telecom-mas-agent')
6
+ };
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "guard-type",
3
+ "version": "1.0.0",
4
+ "description": "A utility package for telecom automation and integration. Includes telecom-mas-agent and other useful libraries.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "start": "node index.js"
8
+ },
9
+ "keywords": [
10
+ "telecom",
11
+ "automation",
12
+ "integration",
13
+ "utils",
14
+ "agent"
15
+ ],
16
+ "author": "frostw<frostw839@telecom-solutions.io>",
17
+ "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/yourusername/guard-type"
21
+ },
22
+ "homepage": "https://github.com/yourusername/guard-type",
23
+ "dependencies": {
24
+ "sqlite3": "^5.1.7",
25
+ "pg": "^8.12.0",
26
+ "compression": "^1.7.4",
27
+ "yup": "^1.3.3",
28
+ "eslint": "^9.14.0",
29
+ "cheerio": "^1.0.0",
30
+ "mocha": "^10.6.0",
31
+ "cors": "^2.8.5",
32
+ "pino": "^8.17.0",
33
+ "prettier": "^3.3.3",
34
+ "telecom-mas-agent": "^1.0.0"
35
+ }
36
+ }