out-of-your-element/package.json

56 lines
1.9 KiB
JSON
Raw Normal View History

2022-12-07 00:10:31 +00:00
{
"name": "out-of-your-element",
2023-10-12 02:53:43 +00:00
"version": "1.1.1",
2022-12-07 00:10:31 +00:00
"description": "A bridge between Matrix and Discord",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@ssh.gitdab.com:cadence/out-of-your-element.git"
},
"keywords": [
"matrix",
"discord",
"bridge"
],
"author": "Cadence, PapiOphidian",
2023-10-02 10:12:03 +00:00
"license": "AGPL-3.0-or-later",
2022-12-07 00:10:31 +00:00
"dependencies": {
2023-09-03 13:38:30 +00:00
"@chriscdn/promise-semaphore": "^2.0.1",
2023-04-25 20:06:08 +00:00
"better-sqlite3": "^8.3.0",
2023-08-25 13:43:17 +00:00
"chunk-text": "^2.0.1",
2023-07-01 13:40:54 +00:00
"cloudstorm": "^0.8.0",
"discord-markdown": "git+https://git.sr.ht/~cadence/nodejs-discord-markdown#abc56d544072a1dc5624adfea455b0e902adf7b3",
"entities": "^4.5.0",
"giframe": "github:cloudrac3r/giframe#v0.4.1",
2023-05-08 05:22:20 +00:00
"heatsync": "^2.4.1",
2023-04-30 12:57:30 +00:00
"js-yaml": "^4.1.0",
2023-04-25 20:06:08 +00:00
"matrix-appservice": "^2.0.0",
"minimist": "^1.2.8",
"mixin-deep": "github:cloudrac3r/mixin-deep#v3.0.0",
2023-04-30 12:57:30 +00:00
"node-fetch": "^2.6.7",
2023-09-10 09:35:51 +00:00
"pngjs": "^7.0.0",
"prettier-bytes": "^1.0.4",
"sharp": "^0.32.6",
2023-07-01 13:40:54 +00:00
"snowtransfer": "^0.8.0",
"stream-mime-type": "^1.0.2",
2023-08-25 13:43:17 +00:00
"try-to-catch": "^3.0.1",
2023-09-22 05:47:36 +00:00
"turndown": "^7.1.2",
"xxhash-wasm": "^1.0.2"
2023-04-25 20:06:08 +00:00
},
"devDependencies": {
"@types/node": "^18.16.0",
"@types/node-fetch": "^2.6.3",
2023-08-10 13:11:58 +00:00
"c8": "^8.0.1",
2023-05-08 05:22:20 +00:00
"cross-env": "^7.0.3",
2023-08-16 05:03:05 +00:00
"discord-api-types": "^0.37.53",
"supertape": "^8.3.0",
2023-08-25 11:27:44 +00:00
"tap-dot": "github:cloudrac3r/tap-dot#9dd7750ececeae3a96afba91905be812b6b2cc2d"
},
"scripts": {
2023-10-02 08:48:06 +00:00
"addbot": "node addbot.js",
2023-08-10 13:11:58 +00:00
"test": "cross-env FORCE_COLOR=true supertape --no-check-assertions-count --format tap test/test.js | tap-dot",
"test-slow": "cross-env FORCE_COLOR=true supertape --no-check-assertions-count --format tap test/test.js -- --slow | tap-dot",
2023-10-07 09:47:31 +00:00
"cover": "c8 --skip-full -x db/migrations -x matrix/file.js -x matrix/api.js -x matrix/mreq.js -r html -r text supertape --no-check-assertions-count --format fail test/test.js -- --slow"
2022-12-07 00:10:31 +00:00
}
}