@zero-transfer/mft 0.1.0-alpha.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.
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # @zero-transfer/mft
2
+
3
+ Managed File Transfer (MFT) workflows — routes, schedules, audit logs, webhooks, approvals.
4
+
5
+ > **Alpha umbrella package.** This package currently re-exports the entire
6
+ > [`@zero-transfer/sdk`](https://www.npmjs.com/package/@zero-transfer/sdk)
7
+ > public surface. Future releases will narrow this package to only its
8
+ > dedicated subset (see the
9
+ > [ZeroTransfer remake plan](https://github.com/tonywied17/zero-transfer/blob/main/zero-transfer-remake.md#future-monorepo-shape)).
10
+ > If you want every provider in one install today, depend on
11
+ > `@zero-transfer/sdk` directly.
12
+
13
+ ## Install
14
+
15
+ ```bash
16
+ npm install @zero-transfer/mft
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ ```ts
22
+ import { createTransferClient } from "@zero-transfer/mft";
23
+
24
+ const client = createTransferClient();
25
+ ```
26
+
27
+ See the [main README](https://github.com/tonywied17/zero-transfer#readme) for
28
+ full documentation.
29
+
30
+ ## License
31
+
32
+ MIT © Tony Wiedman
package/dist/index.cjs ADDED
@@ -0,0 +1,3 @@
1
+ // AUTO-GENERATED stub. See packages/README.md.
2
+ "use strict";
3
+ module.exports = require("@zero-transfer/sdk");
@@ -0,0 +1,2 @@
1
+ // AUTO-GENERATED stub. See packages/README.md.
2
+ export * from "@zero-transfer/sdk";
package/dist/index.mjs ADDED
@@ -0,0 +1,2 @@
1
+ // AUTO-GENERATED stub. See packages/README.md.
2
+ export * from "@zero-transfer/sdk";
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@zero-transfer/mft",
3
+ "version": "0.1.0-alpha.0",
4
+ "description": "Managed File Transfer (MFT) workflows — routes, schedules, audit logs, webhooks, approvals.",
5
+ "keywords": [
6
+ "zero-transfer",
7
+ "mft",
8
+ "managed-file-transfer",
9
+ "routes",
10
+ "schedules"
11
+ ],
12
+ "author": "Tony Wiedman",
13
+ "license": "MIT",
14
+ "main": "./dist/index.cjs",
15
+ "module": "./dist/index.mjs",
16
+ "types": "./dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "import": "./dist/index.mjs",
21
+ "require": "./dist/index.cjs"
22
+ },
23
+ "./package.json": "./package.json"
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md",
28
+ "LICENSE"
29
+ ],
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/tonywied17/zero-transfer.git",
33
+ "directory": "packages/mft"
34
+ },
35
+ "bugs": {
36
+ "url": "https://github.com/tonywied17/zero-transfer/issues"
37
+ },
38
+ "homepage": "https://github.com/tonywied17/zero-transfer#readme",
39
+ "engines": {
40
+ "node": ">=20.0.0"
41
+ },
42
+ "publishConfig": {
43
+ "registry": "https://registry.npmjs.org/",
44
+ "provenance": true,
45
+ "access": "public"
46
+ },
47
+ "sideEffects": false,
48
+ "dependencies": {
49
+ "@zero-transfer/sdk": "0.1.0-alpha.0"
50
+ }
51
+ }