-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.38 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
{
"name": "VecBot",
"version": "1.0.0",
"main": "dist/index.js",
"author": "@vecnz <[email protected]>",
"license": "AGPLv3",
"type": "module",
"scripts": {
"lint": "eslint src --ext ts --fix",
"format": "prettier --write src",
"typecheck": "tsc -b src",
"start": "node --preserve-symlinks --enable-source-maps dist/index.js",
"build": "tsup",
"watch": "tsup --watch",
"dev": "tsup --watch --onSuccess \"yarn start\"",
"prepare": "husky install .github/husky",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"test": ""
},
"imports": {
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js"
},
"dependencies": {
"@sapphire/decorators": "^6.0.0",
"@sapphire/discord-utilities": "^3.0.0",
"@sapphire/discord.js-utilities": "^6.0.0",
"@sapphire/fetch": "^2.4.1",
"@sapphire/framework": "^4.0.0",
"@sapphire/plugin-editable-commands": "^3.0.0",
"@sapphire/plugin-logger": "^3.0.1",
"@sapphire/plugin-scheduled-tasks": "^6.0.0",
"@sapphire/plugin-subcommands": "^4.0.0",
"@sapphire/time-utilities": "^1.7.8",
"@sapphire/type": "^2.3.0",
"@sapphire/utilities": "^3.11.0",
"@skyra/env-utilities": "^1.1.0",
"bull": "^4.10.2",
"bullmq": "^3.5.3",
"colorette": "^2.0.19",
"discord-api-types": "^0.37.26",
"discord.js": "^14.7.1",
"dotenv-cra": "^3.0.2",
"reflect-metadata": "^0.1.13"
},
"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": "3.3.4",
"@swc/core": "1.3.53",
"@types/eslint": "8.56.3",
"@types/node": "20.11.20",
"@types/ws": "8.5.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "13.2.1",
"npm-run-all": "4.1.5",
"pinst": "3.0.0",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"prisma": "4.13.0",
"ts-node": "10.9.1",
"tsc-watch": "6.0.0",
"tsup": "6.7.0",
"typescript": "5.3.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"prettier": "@sapphire/prettier-config",
"eslintConfig": {
"extends": "@sapphire"
},
"packageManager": "[email protected]"
}