-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "palavreco",
"version": "2.0.0",
"description": "The Discord bot that simulates Wordle in Portuguese",
"main": "src/bot.ts",
"scripts": {
"dev": "tsnd --transpile-only src/bot.ts",
"commands": "tsnd --transpile-only src/register.ts",
"build": "tsc",
"start": "node build/bot.js",
"lint": "eslint src",
"format": "prettier src --write"
},
"keywords": [
"discord",
"wordle",
"bot"
],
"repository": {
"type": "git",
"url": "https://github.com/palavreco/Palavreco"
},
"bugs": {
"url": "https://github.com/palavreco/Palavreco/issues"
},
"engines": {
"node": ">=16.13.2"
},
"contributors": [
"ADMVicli <[email protected]>",
"eduraio <[email protected]>",
"vitorlops <[email protected]>"
],
"license": "Apache-2.0",
"dependencies": {
"@napi-rs/canvas": "^0.1.26",
"dayjs": "^1.10.7",
"discord-api-types": "^0.31.2",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"knex": "^2.2.0",
"pg": "^8.7.3",
"quickchart-js": "^3.0.2",
"readline": "^1.3.0",
"templite": "^1.2.0"
},
"devDependencies": {
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"chart.js": "^3.9.1",
"eslint": "^8.11.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
}
}