-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 982 Bytes
/
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
{
"name": "matrix-bot-sdk-bot-template",
"version": "0.1.0",
"author": "TravisR",
"license": "Apache-2.0",
"description": "A template repository for bots made with the matrix-bot-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/turt2live/matrix-bot-sdk-bot-template.git"
},
"bugs": {
"url": "https://github.com/turt2live/matrix-bot-sdk-bot-template/issues"
},
"homepage": "https://github.com/turt2live/matrix-bot-sdk-bot-template#readme",
"keywords": [
"matrix",
"bot",
"template"
],
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"lint": "tslint --project ./tsconfig.json -t stylish",
"start:dev": "npm run build && node lib/index.js"
},
"dependencies": {
"config": "^3.3.6",
"escape-html": "^1.0.3",
"js-yaml": "^4.1.0",
"matrix-bot-sdk": "^0.6.0-beta.4"
},
"devDependencies": {
"@types/node": "^14.18.5",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
}
}