-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
57 lines (57 loc) · 1.9 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
54
55
56
57
{
"name": "vk2discord",
"version": "3.0.5",
"LATEST_CONFIG_VERSION": 5,
"description": "Автоматическая публикация записей из группы или профиля ВКонтакте в канал Discord.",
"main": "./build/index.js",
"type": "module",
"scripts": {
"start": "node --experimental-modules --experimental-json-modules --unhandled-rejections=warn ./dist/index.js",
"prestart": "node --experimental-modules --experimental-json-modules --unhandled-rejections=warn ./scripts/check.js",
"prebuild": "node ./scripts/buildInit.js",
"build": "tsc",
"update": "node --experimental-modules --experimental-json-modules --unhandled-rejections=warn ./scripts/update.js",
"pretest": "npm run-script build",
"test": "mocha --package ./package.json",
"eslint:github-action": "eslint ./src/**/*",
"eslint:fix": "eslint ./src/**/* --fix"
},
"homepage": "https://github.com/MrZillaGold/VK2Discord#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MrZillaGold/VK2Discord.git"
},
"author": "MrZillaGold <Pronin Egor | [email protected]>",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/MrZillaGold/VK2Discord/issues"
},
"dependencies": {
"@discordjs/builders": "^0.15.0",
"discord.js": "^13.8.1",
"string-replace-async": "^3.0.2",
"vk-io": "^4.6.0"
},
"devDependencies": {
"@types/node": "^18.6.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"mocha": "^10.0.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=19.0.0"
},
"mocha": {
"exit": true,
"timeout": 30000,
"reporter": "spec",
"node-option": [
"experimental-modules",
"experimental-json-modules",
"es-module-specifier-resolution=node"
]
}
}