-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1017 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
38
39
40
41
42
{
"name": "vk-chat-bot",
"version": "1.0.0",
"dependencies": {
"@types/node": "^14.14.31",
"@types/sqlite3": "^3.1.7",
"dotenv": "^10.0.0",
"node-fetch": "^2.6.1",
"sqlite3": "^5.0.2",
"systeminformation": "^5.6.1",
"tslint": "^6.1.3",
"vk-io": "^4.3.2"
},
"description": "Simple chat bot for VK",
"main": "src/index.js",
"scripts": {
"clean": "tsc --build --clean",
"compile": "tsc --build",
"start": "node src/index.js",
"clean_compile": "npm run-script clean && npm run-script compile",
"build": "npm run-script clean_compile && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/melod1n/vk-chat-bot.git"
},
"keywords": [
"vk",
"chat",
"bot",
"nodejs",
"js",
"typescript",
"ts"
],
"author": "melod1n",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/melod1n/vk-chat-bot/issues"
},
"homepage": "https://github.com/melod1n/vk-chat-bot#readme"
}