-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "vienna-bot",
"version": "0.5.0",
"description": "Un bot que j'ai fait dans l'intention de ratio des gens (inspiré par [ce tweet](https://twitter.com/viennavtuber/status/1481998814944837633?s=20)), sauf que c'est allé plus loin.",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"dev": "nodemon --watch src -e js,ts,json --exec \"ts-node src/index.ts\"",
"start": "npm run build && node dist/index.js",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pyrospower/Vienna-Bot.git"
},
"keywords": [],
"author": "Pyrospower",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pyrospower/Vienna-Bot/issues"
},
"homepage": "https://github.com/Pyrospower/Vienna-Bot#readme",
"dependencies": {
"discord-api-types": "^0.37.30",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"googleapis": "^110.0.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vitest": "^0.27.3"
}
}