-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.64 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": "@totigm/bot-builder",
"version": "1.2.1",
"description": "This is a library to create bots for different platforms. It handles all the commands stuff behind the scenes, so you can focus on your bot's logic.",
"main": "dist/index.js",
"bin": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "prettier --check src",
"prettier:fix": "prettier --write src",
"check": "npm run lint && npm run prettier",
"check:fix": "npm run lint:fix && npm run prettier:fix",
"prepublishOnly": "npm run check && npm run build"
},
"dependencies": {
"deepmerge": "^4.2.2",
"string-similarity": "^4.0.4",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/node": "^15.6.1",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.0.0",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/totigm/bot-builder"
},
"keywords": [
"typescript",
"bot",
"builder"
],
"author": "Toti Muñoz",
"license": "MIT",
"bugs": {
"url": "https://github.com/totigm/bot-builder/issues"
},
"homepage": "https://github.com/totigm/bot-builder#readme"
}