-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "vk-dialog-dumper",
"version": "0.0.1",
"description": "Script for download vk dialog attachments",
"main": "dist/index.js",
"scripts": {
"build": "tsc --build tsconfig.json",
"start": "node dist/index.js",
"start:dev": "nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zdev-online/VKDialogDumper.git"
},
"keywords": [
"bot",
"dump",
"vk",
"dialog"
],
"author": "zdev_online",
"license": "ISC",
"bugs": {
"url": "https://github.com/zdev-online/vk-dialog-dumper/issues"
},
"homepage": "https://github.com/zdev-online/vk-dialog-dumper#readme",
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/node": "^17.0.10",
"@types/serve-static": "^1.13.10",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"archiver": "^5.3.0",
"axios": "^0.25.0",
"open": "^8.4.0",
"serve-static": "^1.14.2",
"socket.io": "^4.4.1",
"vk-io": "^4.4.0"
},
"nodemonConfig": {
"ignore": ["client/*"]
}
}