@zero-transfer/sftp 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/sftp
2
+
3
+ SFTP provider with jump-host support for ZeroTransfer.
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/sftp
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ ```ts
22
+ import { createTransferClient } from "@zero-transfer/sftp";
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,49 @@
1
+ {
2
+ "name": "@zero-transfer/sftp",
3
+ "version": "0.1.0-alpha.0",
4
+ "description": "SFTP provider with jump-host support for ZeroTransfer.",
5
+ "keywords": [
6
+ "zero-transfer",
7
+ "sftp",
8
+ "ssh"
9
+ ],
10
+ "author": "Tony Wiedman",
11
+ "license": "MIT",
12
+ "main": "./dist/index.cjs",
13
+ "module": "./dist/index.mjs",
14
+ "types": "./dist/index.d.ts",
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.mjs",
19
+ "require": "./dist/index.cjs"
20
+ },
21
+ "./package.json": "./package.json"
22
+ },
23
+ "files": [
24
+ "dist",
25
+ "README.md",
26
+ "LICENSE"
27
+ ],
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/tonywied17/zero-transfer.git",
31
+ "directory": "packages/sftp"
32
+ },
33
+ "bugs": {
34
+ "url": "https://github.com/tonywied17/zero-transfer/issues"
35
+ },
36
+ "homepage": "https://github.com/tonywied17/zero-transfer#readme",
37
+ "engines": {
38
+ "node": ">=20.0.0"
39
+ },
40
+ "publishConfig": {
41
+ "registry": "https://registry.npmjs.org/",
42
+ "provenance": true,
43
+ "access": "public"
44
+ },
45
+ "sideEffects": false,
46
+ "dependencies": {
47
+ "@zero-transfer/sdk": "0.1.0-alpha.0"
48
+ }
49
+ }