-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.05 KB
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": "vito-demo-bot",
"version": "1.0.0",
"description": "Official reference implementation for integrating the Vetox Vito API into a Discord bot — runs the full purchase flow (deduct → PIN confirm → webhook/poll → delivery) end-to-end inside Discord.",
"type": "commonjs",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"test": "node --test"
},
"keywords": [
"vito",
"vetox",
"discord",
"discord-bot",
"discord.js",
"payments",
"webhook",
"digital-goods",
"reference-implementation",
"example"
],
"author": "Ryo (iRyoDev)",
"license": "MIT",
"homepage": "https://github.com/iRyoDev/vito-demo-bot#readme",
"repository": {
"type": "git",
"url": "https://github.com/iRyoDev/vito-demo-bot.git"
},
"bugs": {
"url": "https://github.com/iRyoDev/vito-demo-bot/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"discord.js": "^14.16.3",
"dotenv": "^16.4.7",
"express": "^4.21.2"
}
}