This repository was archived by the owner on Feb 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.34 KB
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
{
"name": "@bricked/cluster",
"private": true,
"description": "A universal discord bot whose name i stole from @clustra on discord. ",
"keywords": [
"cluster"
],
"homepage": "https://github.com/brckd/cluster#readme",
"bugs": {
"url": "https://github.com/brckd/cluster/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brckd/cluster.git"
},
"license": "MIT",
"author": "Bricked",
"main": "dist/index.js",
"scripts": {
"build": "npx tsup",
"format": "npx sort-package-json && npx prettier --write . && npx eslint --fix --no-error-on-unmatched-pattern .",
"prepare": "npx husky install",
"start": "node dist/index.js",
"watch": "npx tsup --watch",
"dev": "npx nodemon"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"lint-staged": {
"!(*.ts|package.json)": "npx prettier --ignore-unknown --write",
"*.ts": [
"npx prettier --write",
"npx eslint --fix"
],
"package.json": [
"npx sort-package-json",
"npx prettier --write"
]
},
"prettier": "@bricked/prettier-config",
"eslintConfig": {
"extends": "@bricked"
},
"release": {
"extends": "@bricked/semantic-release-config"
},
"dependencies": {
"@sapphire/decorators": "^6.0.1",
"@sapphire/framework": "^4.6.0",
"@sapphire/plugin-subcommands": "^4.2.1",
"@sapphire/time-utilities": "^1.7.10",
"@sapphire/utilities": "^3.13.0",
"chalk": "4.1.2",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"mongoose": "^7.5.2"
},
"devDependencies": {
"@bricked/eslint-config": "^1.0.0",
"@bricked/prettier-config": "^1.0.0",
"@bricked/semantic-release-config": "^1.1.0",
"@bricked/ts-config": "^1.2.3",
"@bricked/tsup-config": "^1.0.0",
"@commitlint/config-conventional": "^17.6.3",
"@sapphire/cli": "^1.6.1",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"commitlint": "^17.6.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "^2.8.8",
"sort-package-json": "^2.4.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"publishConfig": {
"access": "public"
}
}