-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 2.73 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "showdown",
"version": "1.0.0",
"description": "Showdown! for Discord",
"main": "dist/showdown.js",
"author": "castdrian",
"license": "MIT",
"type": "module",
"scripts": {
"lint": "eslint src tests --ext ts --fix",
"format": "prettier --write {src,tests}/**/*.ts",
"update": "yarn upgrade-interactive",
"build": "tsc -b src",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"sversion": "standard-version",
"commit": "git-cz",
"cz": "git-cz",
"prepare": "husky install .github/husky",
"start": "yarn run build && node dist/showdown.js",
"predocker:start": "yarn",
"docker:start": "yarn start"
},
"dependencies": {
"@pkmn/client": "^0.6.11",
"@pkmn/dex": "^0.7.37",
"@pkmn/img": "^0.2.8",
"@pkmn/randoms": "^0.7.37",
"@pkmn/sim": "^0.7.37",
"@pkmn/view": "^0.6.11",
"@sapphire/decorators": "^6.0.1",
"@sapphire/framework": "^4.4.0",
"@sapphire/plugin-logger": "^3.0.3",
"@tommoor/remove-markdown": "^0.3.2",
"discord-api-types": "^0.37.39",
"discord.js": "14.9.0",
"dotenv": "^16.0.0",
"firebase-admin": "^11.7.0",
"last-commit-log": "^3.2.0",
"new-github-issue-url": "^1.0.0",
"node-cache": "^5.1.2",
"pkmn-romaji": "^1.0.0",
"remove-markdown": "^0.5.0",
"sharp": "^0.32.0",
"skia-canvas": "^1.0.1",
"tslib": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@sapphire/eslint-config": "^4.4.1",
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^4.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/redis-server": "^1.2.0",
"@types/remove-markdown": "^0.3.1",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"standard-version": "^9.3.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.5.0",
"typedoc": "^0.24.4",
"typescript": "^5.0.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": "@sapphire/prettier-config",
"imports": {
"#handlers/*": "./dist/handlers/*.js",
"#constants/*": "./dist/constants/*.js",
"#util/*": "./dist/util/*.js"
}
}