-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "vk-chat-bot",
"version": "1.0.0",
"dependencies": {
"@types/node": "^18.7.23",
"@types/sqlite3": "^3.1.8",
"dotenv": "^16.0.2",
"node-fetch": "^3.2.10",
"reflect-metadata": "^0.1.13",
"sql-template-strings": "^2.2.2",
"sqlite3": "^5.1.1",
"systeminformation": "^5.12.6",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"vk-io": "^4.7.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"ts-node-dev": "^2.0.0"
},
"description": "Simple chat bot for VK",
"main": "src/index.ts",
"scripts": {
"compile": "tsc",
"start": "node src/index.js",
"build": "npm run-script 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"
}