abap-local-client 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.
package/cli-config.cjs ADDED
@@ -0,0 +1,2 @@
1
+ // abap-local-config — CommonJS wrapper for ESM entry point
2
+ import('../config-cli.mjs');
package/cli.cjs ADDED
@@ -0,0 +1,3 @@
1
+ // abap-local-client — CommonJS wrapper for ESM entry point
2
+ // This wrapper is what npm's "bin" generates: node ./cli.js
3
+ import('../sso-sap-client.mjs');
package/package.json CHANGED
@@ -1,15 +1,13 @@
1
1
  {
2
2
  "name": "abap-local-client",
3
- "version": "1.0.1",
3
+ "version": "1.1.1",
4
4
  "description": "SAP Local Client — WebSocket bridge with Basic, SPNEGO, X.509, SAML & SNC authentication",
5
5
  "main": "sso-sap-client.mjs",
6
6
  "type": "module",
7
7
  "scripts": {
8
8
  "start": "node sso-sap-client.mjs",
9
- "dev": "node sso-sap-client.mjs",
10
9
  "sso": "node sso-sap-client.mjs",
11
- "rfc": "node saprouter-client.mjs",
12
- "kill": "node kill-client.js",
10
+ "config": "node config-cli.mjs",
13
11
  "test": "node test-integration.mjs",
14
12
  "prepublishOnly": "node test-integration.mjs"
15
13
  },