Comparer les modifications
Certaines modifications ne sont pas affichées.
Pour une expérience de navigation plus rapide, seulement 38 fichiers sur 104 sont affichés. Téléchargez un des fichiers ci-dessous pour voir toutes les modifications.
.eslintrc
0 → 100644
+58
−0
.github/CODEOWNERS
0 → 100644
+1
−0
.github/pull_request_template.md
0 → 100644
+3
−0
.github/workflows/docker.yml
0 → 100644
+44
−0
.github/workflows/newsfile.yml
0 → 100644
+22
−0
.github/workflows/sign-off.yml
0 → 100644
+10
−0
.github/workflows/tests.yml
0 → 100644
+28
−0
+10
−0
.mocharc.yml
0 → 100644
+6
−0
.npmrc
0 → 100644
+2
−0
.nycrc
0 → 100644
+5
−0
.travis.yml
supprimé100644 → 0
+0
−27
CHANGELOG.md
0 → 100644
+73
−0
CONTRIBUTING.md
0 → 100644
+38
−0
+5
−5
+41
−13
changelog.d/git.keep
0 → 100644
+0
−0
Numéro de ligne d'origine | Numéro de ligne de diff | Ligne de diff |
---|
+34
−8
+33
−0
docs/bridge-migrations.md
0 → 100644
+11
−0
+5
−5
+3
−3
package-lock.json
supprimé100644 → 0
+0
−3334
Fichier supprimé.
La taille limite d'aperçu a été dépassée, l'affichage des modifications a donc été réduit.
+47
−33
Numéro de ligne d'origine | Numéro de ligne de diff | Ligne de diff |
---|---|---|
{
|
||
"name": "matrix-appservice-discord",
|
||
"version": "0.4.0",
|
||
"version": "3.1.1",
|
||
"description": "A bridge between Matrix and Discord",
|
||
"main": "discordas.js",
|
||
"engines": {
|
||
"npm": "please-use-yarn",
|
||
"node": ">=16 <=18"
|
||
},
|
||
"scripts": {
|
||
"test": "npm run-script build && mocha --opts test/mocha.opts build/test/config.js build/test",
|
||
"lint": "tslint --project ./tsconfig.json -t stylish",
|
||
"coverage": "istanbul --include-all-sources cover -x build/src/discordas.js _mocha -- build/test/ -R spec",
|
||
"test": "mocha -r ts-node/register test/config.ts test/test_*.ts test/**/test_*.ts",
|
||
"lint": "eslint -c .eslintrc --max-warnings 200 src/**/*.ts test/**/*.ts",
|
||
"coverage": "tsc && nyc mocha build/test/config.js build/test",
|
||
"build": "tsc",
|
||
"start": "npm run-script build && node ./build/src/discordas.js -p 9005 -c config.yaml",
|
||
"postinstall": "yarn build",
|
||
"start": "yarn build && node ./build/src/discordas.js -c config.yaml",
|
||
"debug": "yarn build && node --inspect ./build/src/discordas.js -c config.yaml",
|
||
"addbot": "node ./build/tools/addbot.js",
|
||
"adminme": "node ./build/tools/adminme.js",
|
||
"usertool": "node ./build/tools/userClientTools.js",
|
||
@@ -34,37 +40,45 @@ | ||
},
|
||
"homepage": "https://github.com/Half-Shot/matrix-appservice-discord#readme",
|
||
"dependencies": {
|
||
"@types/p-queue": "^3.0.0",
|
||
"better-sqlite3": "^5.0.1",
|
||
"command-line-args": "^4.0.1",
|
||
"command-line-usage": "^4.1.0",
|
||
"discord-markdown": "^2.0.0",
|
||
"discord.js": "^11.4.2",
|
||
"@deurstann/matrix-discord-parser": "1.10.7",
|
||
"better-discord.js": "github:matrix-org/better-discord.js#5024781db755259e88abe915630b7d5b3ba5f48f",
|
||
"better-sqlite3": "^7.1.0",
|
||
"command-line-args": "^5.1.1",
|
||
"command-line-usage": "^6.1.0",
|
||
"escape-html": "^1.0.3",
|
||
"escape-string-regexp": "^1.0.5",
|
||
"js-yaml": "^3.13.1",
|
||
"matrix-appservice-bridge": "matrix-org/matrix-appservice-bridge#8a7288edf1d1d1d1395a83d330d836d9c9bf1e76",
|
||
"mime": "^1.6.0",
|
||
"moment": "^2.22.2",
|
||
"node-html-parser": "^1.1.11",
|
||
"p-queue": "^3.0.0",
|
||
"pg-promise": "^8.5.1",
|
||
"tslint": "^5.11.0",
|
||
"typescript": "^3.1.3",
|
||
"winston": "^3.0.0",
|
||
"winston-daily-rotate-file": "^3.3.0"
|
||
"escape-string-regexp": "^4.0.0",
|
||
"js-yaml": "^3.14.0",
|
||
"marked": "^1.2.2",
|
||
"matrix-appservice-bridge": "^5.0.0",
|
||
"mime": "^2.4.6",
|
||
"p-queue": "^6.4.0",
|
||
"pg-promise": "^10.5.6",
|
||
"prom-client": "^12.0.0",
|
||
"uuid": "^8.3.1",
|
||
"winston": "^3.2.1",
|
||
"winston-daily-rotate-file": "^4.5.0"
|
||
},
|
||
"devDependencies": {
|
||
"@types/chai": "^3.4.35",
|
||
"@types/mocha": "^5.2.5",
|
||
"@types/node": "^10.12.0",
|
||
"@types/sqlite3": "^3.1.3",
|
||
"chai": "^3.5.0",
|
||
"eslint": "^3.8.1",
|
||
"istanbul": "^0.4.5",
|
||
"mocha": "^5.2.0",
|
||
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
||
"@types/better-sqlite3": "^5.4.1",
|
||
"@types/chai": "^4.2.11",
|
||
"@types/command-line-args": "^5.0.0",
|
||
"@types/express": "^4.17.9",
|
||
"@types/js-yaml": "^3.12.4",
|
||
"@types/marked": "^1.1.0",
|
||
"@types/mime": "^2.0.2",
|
||
"@types/mocha": "^7.0.2",
|
||
"@types/node": "^14",
|
||
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
||
"@typescript-eslint/parser": "^5.4.0",
|
||
"chai": "^4.2.0",
|
||
"eslint": "^7.4.0",
|
||
"mocha": "^8.0.1",
|
||
"nyc": "^15.1.0",
|
||
"proxyquire": "^1.7.11",
|
||
"source-map-support": "^0.5.9",
|
||
"why-is-node-running": "^2.0.3"
|
||
"source-map-support": "^0.5.19",
|
||
"ts-node": "^8.10.2",
|
||
"typescript": "^4.2.3",
|
||
"why-is-node-running": "^2.2.0"
|
||
}
|
||
} |
pyproject.toml
0 → 100644
+30
−0
scripts/changelog.sh
0 → 100755
+3
−0
scripts/check-newsfragment
0 → 100755
+46
−0
+659
−212
Fichier modifié.
La taille limite d'aperçu a été dépassée, l'affichage des modifications a donc été réduit.
+125
−35
+44
−18
+67
−11
+18
−14
+31
−19
+7
−7
+69
−33
Fichier modifié.
La taille limite d'aperçu a été dépassée, l'affichage des modifications a donc été réduit.
src/db/schema/v10.ts
0 → 100644
+54
−0
Fichier modifié et déplacé.
La taille limite d'aperçu a été dépassée, l'affichage des modifications a donc été réduit.
+2
−2
+2
−2