@gatewaycorporate/devicer-intel 1.0.1 → 1.1.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.
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Devicer Intel Suite Meta Package
3
+ * Aggregates the published Devicer Intelligence Suite packages
4
+ * for server behind a single, stable entry point.
5
+ */
6
+ import * as devicer from 'devicer.js';
7
+ import * as ipDevicer from 'ip-devicer';
8
+ import * as tlsDevicer from 'tls-devicer';
9
+ export { devicer, ipDevicer, tlsDevicer };
10
+ declare const _default: {
11
+ devicer: typeof devicer;
12
+ ipDevicer: typeof ipDevicer;
13
+ tlsDevicer: typeof tlsDevicer;
14
+ };
15
+ export default _default;
16
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,OAAO,MAAM,YAAY,CAAC;AACtC,OAAO,KAAK,SAAS,MAAM,YAAY,CAAC;AACxC,OAAO,KAAK,UAAU,MAAM,aAAa,CAAC;AAE1C,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,CAAC;;;;;;AAE1C,wBAIE"}
package/dist/index.js ADDED
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Devicer Intel Suite Meta Package
3
+ * Aggregates the published Devicer Intelligence Suite packages
4
+ * for server behind a single, stable entry point.
5
+ */
6
+ import * as devicer from 'devicer.js';
7
+ import * as ipDevicer from 'ip-devicer';
8
+ import * as tlsDevicer from 'tls-devicer';
9
+ export { devicer, ipDevicer, tlsDevicer };
10
+ export default {
11
+ devicer,
12
+ ipDevicer,
13
+ tlsDevicer
14
+ };
package/package.json CHANGED
@@ -1,20 +1,33 @@
1
1
  {
2
2
  "name": "@gatewaycorporate/devicer-intel",
3
- "version": "1.0.1",
3
+ "version": "1.1.1",
4
4
  "description": "Meta package for the Devicer Intelligence Suite, exposing the core server and collector modules from a single entry point.",
5
- "main": "index.js",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
6
7
  "exports": {
7
- ".": "./index.js"
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js",
11
+ "default": "./dist/index.js"
12
+ }
8
13
  },
14
+ "files": [
15
+ "dist",
16
+ "src"
17
+ ],
9
18
  "scripts": {
19
+ "build": "tsc",
10
20
  "test": "echo \"Error: no test specified\" && exit 1"
11
21
  },
12
- "dependencies": {
13
- "devicer.js": "^1.5.11",
14
- "snatch.js": "^1.3.0",
15
- "ip-devicer": "^0.2.7",
16
- "tls-devicer": "^0.1.2"
17
- },
22
+ "dependencies": {
23
+ "devicer.js": "^1.6.0",
24
+ "ip-devicer": "^0.3.0",
25
+ "snatch.js": "^1.3.0",
26
+ "tls-devicer": "^0.2.0"
27
+ },
28
+ "devDependencies": {
29
+ "typescript": "^5.9.3"
30
+ },
18
31
  "keywords": [],
19
32
  "author": "",
20
33
  "license": "ISC",
@@ -14,4 +14,4 @@ export default {
14
14
  devicer,
15
15
  ipDevicer,
16
16
  tlsDevicer
17
- };
17
+ };