-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 958 Bytes
/
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
{
"name": "shicka",
"version": "0.0.0",
"description": "Bot for the official Super Bear Adventure Discord server",
"main": "shicka.js",
"scripts": {
"start": "node bin/shicka.js",
"build": "npx tsc && ln -fnrs src/emojis bin/emojis",
"lint": "npx eslint . --ext .ts"
},
"repository": "https://github.com/SuperBearAdventure/shicka",
"author": "Tristan LE GODAIS",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/jsdom": "^21.1.5",
"@types/node-schedule": "^2.1.3",
"@types/w3c-xmlserializer": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"typescript": "~5.2.2"
},
"dependencies": {
"canvas": "^2.11.2",
"discord.js": "^14.14.1",
"jsdom": "^22.1.0",
"node-fetch": "^3.3.2",
"node-schedule": "^2.1.1",
"w3c-xmlserializer": "^5.0.0"
},
"engines": {
"node": "^18.17.0"
}
}