@zero-transfer/sdk 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/CHANGELOG.md +177 -0
- package/LICENSE +21 -0
- package/README.md +285 -0
- package/assets/zero-transfer-logo.svg +201 -0
- package/dist/index.cjs +11812 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.mts +4186 -0
- package/dist/index.d.ts +4186 -0
- package/dist/index.mjs +11650 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +94 -0
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zero-transfer/sdk",
|
|
3
|
+
"version": "0.1.0-alpha.0",
|
|
4
|
+
"description": "Unified TypeScript file transfer SDK for Node.js",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.cjs"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"assets",
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"CHANGELOG.md"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsup",
|
|
25
|
+
"ci": "npm run lint && npm run format:check && npm run typecheck && npm run test:coverage && npm run build && npm run pack:dry",
|
|
26
|
+
"docs": "typedoc",
|
|
27
|
+
"format": "prettier --write .",
|
|
28
|
+
"format:check": "prettier --check .",
|
|
29
|
+
"lint": "eslint .",
|
|
30
|
+
"pack:dry": "npm pack --dry-run",
|
|
31
|
+
"packages:generate": "node scripts/generate-package-stubs.mjs",
|
|
32
|
+
"packages:publish": "node scripts/publish-package-stubs.mjs",
|
|
33
|
+
"prepack": "npm run build",
|
|
34
|
+
"test": "vitest run",
|
|
35
|
+
"test:coverage": "vitest run --coverage",
|
|
36
|
+
"test:integration:ftp": "vitest run test/integration/ftpProvider.docker.test.ts",
|
|
37
|
+
"test:watch": "vitest",
|
|
38
|
+
"typecheck": "tsc --noEmit"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"ftp",
|
|
42
|
+
"ftps",
|
|
43
|
+
"sftp",
|
|
44
|
+
"zero-transfer",
|
|
45
|
+
"client",
|
|
46
|
+
"sdk",
|
|
47
|
+
"typescript",
|
|
48
|
+
"file-transfer",
|
|
49
|
+
"mft",
|
|
50
|
+
"webdav",
|
|
51
|
+
"s3",
|
|
52
|
+
"upload",
|
|
53
|
+
"download",
|
|
54
|
+
"streams"
|
|
55
|
+
],
|
|
56
|
+
"author": "Tony Wiedman",
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"repository": {
|
|
59
|
+
"type": "git",
|
|
60
|
+
"url": "git+https://github.com/tonywied17/zero-transfer.git"
|
|
61
|
+
},
|
|
62
|
+
"bugs": {
|
|
63
|
+
"url": "https://github.com/tonywied17/zero-transfer/issues"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://github.com/tonywied17/zero-transfer#readme",
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=20.0.0"
|
|
68
|
+
},
|
|
69
|
+
"workspaces": [
|
|
70
|
+
"packages/*"
|
|
71
|
+
],
|
|
72
|
+
"publishConfig": {
|
|
73
|
+
"registry": "https://registry.npmjs.org/",
|
|
74
|
+
"provenance": true,
|
|
75
|
+
"access": "public"
|
|
76
|
+
},
|
|
77
|
+
"sideEffects": false,
|
|
78
|
+
"devDependencies": {
|
|
79
|
+
"@eslint/js": "^10.0.1",
|
|
80
|
+
"@types/node": "^25.6.0",
|
|
81
|
+
"@types/ssh2": "^1.15.5",
|
|
82
|
+
"@vitest/coverage-v8": "^4.1.5",
|
|
83
|
+
"eslint": "^10.2.1",
|
|
84
|
+
"prettier": "^3.8.3",
|
|
85
|
+
"tsup": "^8.5.1",
|
|
86
|
+
"typedoc": "^0.28.19",
|
|
87
|
+
"typescript": "^6.0.3",
|
|
88
|
+
"typescript-eslint": "^8.59.0",
|
|
89
|
+
"vitest": "^4.1.5"
|
|
90
|
+
},
|
|
91
|
+
"dependencies": {
|
|
92
|
+
"ssh2": "^1.17.0"
|
|
93
|
+
}
|
|
94
|
+
}
|