-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "aurorabot",
"version": "1.0.0",
"description": "A community-built Discord bot to provide services in the Minecraft Computer Mods Discord guild.",
"private": true,
"type": "module",
"scripts": {
"build:bot": "cross-env NODE_ENV=production && tsc -p tsconfig.json",
"build": "pnpm clean && pnpm build:bot",
"clean": "rimraf dist",
"dev": "cross-env NODE_ENV=development && tsx --import why-is-node-running/include.js src/index.ts",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"lint:codegen": "eslint --fix src/modules.ts || exit 0",
"preinstall": "npx only-allow pnpm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wendelstein7/AuroraBot.git"
},
"keywords": [
"Aurora",
"Discord",
"Bot"
],
"author": "Wendelstein7",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wendelstein7/AuroraBot/issues"
},
"homepage": "https://github.com/Wendelstein7/AuroraBot#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"batching-toposort": "^1.2.0",
"dayjs": "^1.11.12",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-codegen": "0.28.0",
"eslint-plugin-tsdoc": "^0.3.0",
"p-queue": "^8.0.1",
"prettier": "^3.3.3",
"why-is-node-running": "^3.2.0"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.11",
"cross-env": "^7.0.3",
"rimraf": "^6.0.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
},
"engines": {
"node": ">=20.0.0"
}
}