@discordjs/proxy 0.1.0-dev.1654646904-ecc6600 → 0.1.0-dev.1654776318-94bdcac
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/package.json +4 -3
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ pnpm add @discordjs/proxy
|
|
|
28
28
|
|
|
29
29
|
## Links
|
|
30
30
|
|
|
31
|
-
- [Website](https://discord.js.org/) ([source](https://github.com/discordjs/website))
|
|
31
|
+
- [Website](https://discord.js.org/) ([source](https://github.com/discordjs/discord.js/tree/main/packages/website))
|
|
32
32
|
- [Documentation](https://discord.js.org/#/docs/proxy)
|
|
33
33
|
- [Guide](https://discordjs.guide/) ([source](https://github.com/discordjs/guide))
|
|
34
34
|
See also the [Update Guide](https://discordjs.guide/additional-info/changes-in-v13.html), including updated and removed items in the library.
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@discordjs/proxy",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.1654776318-94bdcac",
|
|
4
4
|
"description": "Tools for running an HTTP proxy for Discord's API",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsup && tsc --emitDeclarationOnly --incremental",
|
|
7
7
|
"lint": "prettier --check . && eslint src __tests__ --ext mjs,js,ts",
|
|
8
8
|
"format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix",
|
|
9
|
-
"docs": "
|
|
9
|
+
"docs": "docgen -i src/index.ts -c docs/index.json -o docs/docs.json --typescript",
|
|
10
10
|
"prepublishOnly": "yarn build && yarn lint && yarn test",
|
|
11
11
|
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/proxy/*'",
|
|
12
12
|
"release": "cliff-jumper"
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
"undici": "^5.4.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
+
"@discordjs/docgen": "^0.12.0-dev",
|
|
60
61
|
"@discordjs/scripts": "^0.1.0-dev",
|
|
61
62
|
"@favware/cliff-jumper": "^1.8.3",
|
|
62
63
|
"@types/node": "^16.11.38",
|
|
@@ -66,11 +67,11 @@
|
|
|
66
67
|
"eslint": "^8.17.0",
|
|
67
68
|
"eslint-config-marine": "^9.4.1",
|
|
68
69
|
"eslint-config-prettier": "^8.5.0",
|
|
70
|
+
"eslint-import-resolver-typescript": "^2.7.1",
|
|
69
71
|
"eslint-plugin-import": "^2.26.0",
|
|
70
72
|
"prettier": "^2.6.2",
|
|
71
73
|
"supertest": "^6.2.3",
|
|
72
74
|
"tsup": "^6.1.0",
|
|
73
|
-
"typedoc": "^0.22.17",
|
|
74
75
|
"typescript": "^4.7.3"
|
|
75
76
|
},
|
|
76
77
|
"engines": {
|