-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "xwiki-matrix-bot",
"version": "0.1.0",
"author": "Clément Christiaens and Arsène Fougerouse",
"license": "Apache-2.0",
"description": "Query the XWiki API thanks to a Matrix Bot",
"repository": {
"type": "git",
"url": "git+https://github.com/C-Iaens/XWiki-Matrix.git"
},
"bugs": {
"url": "https://github.com/C-Iaens/XWiki-Matrix/issues"
},
"homepage": "https://github.com/C-Iaens/XWiki-Matrix#readme",
"keywords": [
"matrix",
"bot",
"template"
],
"main": "lib/index.js",
"scripts": {
"build": "npx tsc",
"lint": "eslint ./src",
"format": "prettier --write ./src",
"start:prod": "npm run build && node lib/index.js",
"start:dev": "nodemon -L --watch './src/*' --ext ts --exec 'npm run start:prod'",
"start": "npm run start:dev"
},
"dependencies": {
"@mozilla/readability": "^0.4.4",
"axios": "^1.4.0",
"config": "^3.3.9",
"dotenv": "^16.3.1",
"escape-html": "^1.0.3",
"jsdom": "^22.1.0",
"matrix-bot-sdk": "^0.6.6",
"matrix-js-sdk": "^26.2.0",
"node-fetch": "3.3.1",
"openai": "^3.3.0",
"redis": "^4.6.7"
},
"devDependencies": {
"@types/jsdom": "^21.1.1",
"@types/node": "^12.12.37",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}