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