This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
95 lines (95 loc) · 2.37 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
{
"name": "alestra",
"version": "5.0.0",
"description": "Canvas-Constructor helper bot and Soft-Sandbox Evaluator",
"main": "./dist/Alestra.js",
"imports": {
"#root/*": "./dist/*.js",
"#lib/*": "./dist/lib/*.js"
},
"scripts": {
"start": "node dist/Alestra.js",
"lint": "eslint --ext ts src --fix",
"build": "tsc -b src",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"dev": "yarn build && yarn start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyra-project/alestra.git"
},
"keywords": [
"canvas-constructor",
"canvas",
"helper",
"sapphire"
],
"private": true,
"author": "Aura Román <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/skyra-project/alestra/issues"
},
"dependencies": {
"@napi-rs/canvas": "0.1.26",
"@sapphire/decorators": "^3.1.6",
"@sapphire/framework": "^2.5.1",
"@sapphire/plugin-editable-commands": "^1.2.2",
"@sapphire/plugin-logger": "^3.0.1",
"@sapphire/stopwatch": "^1.5.0",
"@sapphire/time-utilities": "^1.7.8",
"@sapphire/utilities": "^3.11.0",
"@skyra/env-utilities": "^1.1.0",
"acorn": "^8.8.0",
"canvas-constructor": "^7.0.0",
"colorette": "^2.0.19",
"discord-api-types": "~0.33.5",
"discord.js": "^13.12.0",
"eslint": "^8.25.0",
"ws": "^8.9.0",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@sapphire/eslint-config": "^4.3.8",
"@sapphire/prettier-config": "^1.4.4",
"@sapphire/ts-config": "^3.3.4",
"@types/eslint": "^8.4.6",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.8.4"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.7",
"@discordjs/builders": "^0.16.0"
},
"engines": {
"node": ">=16",
"npm": ">=7"
},
"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",
"packageManager": "[email protected]"
}