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
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "guff",
"version": "2.0.0",
"description": "A really cook Discord Bot for Guffo's server",
"keywords": [
"discord",
"bot",
"typescript",
"ts"
],
"repository": {
"type": "git",
"url": "https://github.com/brycked/guff"
},
"author": "Bricked",
"main": "src/run.ts",
"scripts": {
"build": "npx tsc",
"dev": "nodemon src/run.ts",
"format": "npx eslint --fix & npx prettier --write ./**/*.ts",
"start": "node dist/run.js",
"watch": "npx tsc -w"
},
"release": {
"dryRun": true,
"extends": "@bricked/semantic-release-config"
},
"dependencies": {
"canvas": "^2.9.3",
"chalk": "^4.1.2",
"common-tags": "^1.8.2",
"dayjs": "^1.11.5",
"discord.js": "^14.9.0",
"dotenv": "^16.0.0",
"mongoose": "^6.7.2",
"ms": "^3.0.0-beta.2"
},
"devDependencies": {
"@bricked/semantic-release-config": "^1.1.0",
"@types/common-tags": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}