@ctrl/shared-torrent 4.3.2 → 4.3.3
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 +1 -1
- package/dist/index.d.ts +3 -3
- package/package.json +7 -6
package/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# @ctrl/shared-torrent [](https://www.npmjs.com/package/@ctrl/shared-torrent)
|
1
|
+
# @ctrl/shared-torrent [](https://www.npmjs.com/package/@ctrl/shared-torrent)
|
2
2
|
|
3
3
|
> shared types and interfaces between torrent clients
|
4
4
|
|
package/dist/index.d.ts
CHANGED
@@ -20,17 +20,17 @@ export interface TorrentSettings {
|
|
20
20
|
/**
|
21
21
|
* ex - `'/json'`
|
22
22
|
*/
|
23
|
-
path
|
23
|
+
path?: string;
|
24
24
|
username?: string;
|
25
25
|
password?: string;
|
26
26
|
/**
|
27
27
|
* pass http agent for proxy
|
28
|
-
* @link https://github.com/sindresorhus/got#
|
28
|
+
* @link https://github.com/sindresorhus/got/blob/main/documentation/tips.md#proxying
|
29
29
|
*/
|
30
30
|
agent?: Agents;
|
31
31
|
/**
|
32
32
|
* request timeout
|
33
|
-
* @link https://github.com/sindresorhus/got
|
33
|
+
* @link https://github.com/sindresorhus/got/blob/main/documentation/6-timeout.md
|
34
34
|
*/
|
35
35
|
timeout?: number;
|
36
36
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ctrl/shared-torrent",
|
3
|
-
"version": "4.3.
|
3
|
+
"version": "4.3.3",
|
4
4
|
"description": "shared types and interfaces between torrent clients",
|
5
5
|
"author": "Scott Cooper <scttcper@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -20,16 +20,17 @@
|
|
20
20
|
"build": "tsc"
|
21
21
|
},
|
22
22
|
"dependencies": {
|
23
|
-
"got": "^12.
|
23
|
+
"got": "^12.6.0"
|
24
24
|
},
|
25
25
|
"devDependencies": {
|
26
26
|
"@sindresorhus/tsconfig": "3.0.1",
|
27
|
-
"@ctrl/eslint-config": "3.
|
28
|
-
"@types/node": "
|
29
|
-
"typescript": "
|
27
|
+
"@ctrl/eslint-config": "3.7.0",
|
28
|
+
"@types/node": "20.1.0",
|
29
|
+
"typescript": "5.0.4"
|
30
30
|
},
|
31
31
|
"publishConfig": {
|
32
|
-
"access": "public"
|
32
|
+
"access": "public",
|
33
|
+
"provenance": true
|
33
34
|
},
|
34
35
|
"release": {
|
35
36
|
"branches": [
|