@deeplx/core 0.1.0 → 0.1.2
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 +20 -4
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -14,7 +14,21 @@
|
|
|
14
14
|
[](https://github.com/prettier/prettier)
|
|
15
15
|
[](https://github.com/atlassian/changesets)
|
|
16
16
|
|
|
17
|
-
An unofficial
|
|
17
|
+
An unofficial but powerful and easy-to-use yet free DeepL API client for Node.js using [DeepL](https://www.deepl.com) by porting [OwO-Network/DeepLX](https://github.com/OwO-Network/DeepLX).
|
|
18
|
+
|
|
19
|
+
## TOC <!-- omit in toc -->
|
|
20
|
+
|
|
21
|
+
- [Online Service](#online-service)
|
|
22
|
+
- [Installation](#installation)
|
|
23
|
+
- [Usage](#usage)
|
|
24
|
+
- [Supported languages](#supported-languages)
|
|
25
|
+
- [Example 1](#example-1)
|
|
26
|
+
- [Example 2](#example-2)
|
|
27
|
+
- [Sponsors and Backers](#sponsors-and-backers)
|
|
28
|
+
- [Sponsors](#sponsors)
|
|
29
|
+
- [Backers](#backers)
|
|
30
|
+
- [Changelog](#changelog)
|
|
31
|
+
- [License](#license)
|
|
18
32
|
|
|
19
33
|
## Online Service
|
|
20
34
|
|
|
@@ -97,15 +111,17 @@ await translate('Ring til mig!', 'german', 'danish', false)
|
|
|
97
111
|
'Ruf mich an!'
|
|
98
112
|
```
|
|
99
113
|
|
|
100
|
-
|
|
114
|
+
## Sponsors and Backers
|
|
101
115
|
|
|
102
|
-
|
|
116
|
+
[](https://github.com/sponsors/JounQin)
|
|
117
|
+
|
|
118
|
+
### Sponsors
|
|
103
119
|
|
|
104
120
|
| 1stG | RxTS | UnTS |
|
|
105
121
|
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
|
|
106
122
|
| [](https://opencollective.com/1stG) | [](https://opencollective.com/rxts) | [](https://opencollective.com/unts) |
|
|
107
123
|
|
|
108
|
-
|
|
124
|
+
### Backers
|
|
109
125
|
|
|
110
126
|
| 1stG | RxTS | UnTS |
|
|
111
127
|
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deeplx/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "An unofficial
|
|
5
|
+
"description": "An unofficial but powerful and easy-to-use yet free DeepL API client for Node.js using [DeepL](https://www.deepl.com) by porting [OwO-Network/DeepLX](https://github.com/OwO-Network/DeepLX).",
|
|
6
6
|
"repository": "git+https://github.com/un-ts/deeplx.git",
|
|
7
7
|
"homepage": "https://github.com/un-ts/deeplx/blob/master/packages/@deeplx/core",
|
|
8
8
|
"author": "JounQin <admin@1stg.me> (https://www.1stG.me)",
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
"engines": {
|
|
12
12
|
"node": "^12.20 || ^14.18.0 || >=16.0.0"
|
|
13
13
|
},
|
|
14
|
-
"bin": "./lib/cli.js",
|
|
15
14
|
"main": "./lib/index.cjs",
|
|
16
15
|
"types": "./index.d.cts",
|
|
17
16
|
"module": "./lib/index.js",
|
|
@@ -50,7 +49,7 @@
|
|
|
50
49
|
],
|
|
51
50
|
"dependencies": {
|
|
52
51
|
"whatlang-node": "^0.1.0",
|
|
53
|
-
"x-fetch": "^0.2.
|
|
52
|
+
"x-fetch": "^0.2.6"
|
|
54
53
|
},
|
|
55
54
|
"publishConfig": {
|
|
56
55
|
"access": "public"
|