This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "akari",
"description": "A configurable helper bot for Discord.",
"version": "1.0.0",
"author": {
"name": "janleigh",
"url": "https://github.com/janleigh/akari"
},
"license": "MIT",
"main": "build/index.js",
"scripts": {
"build": "npx tsup && yarn locales",
"build:production": "yarn format:check && yarn lint && yarn build",
"format": "prettier --write src",
"format:check": "prettier --check src",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"locales": "cp -rf src/languages/ build/ && echo \"Copied language files to build directory.\"",
"start:development": "NODE_ENV=development node --trace-deprecation .",
"start:production": "NODE_ENV=production node .",
"husky": "husky install .github/husky"
},
"devDependencies": {
"@types/ws": "^8.5.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"prettier": "^3.0.3",
"prisma": "^5.4.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"dependencies": {
"@discordjs/voice": "^0.16.0",
"@prisma/client": "5.4.2",
"@sapphire/decorators": "^6.0.2",
"@sapphire/framework": "^4.7.0",
"@sapphire/pieces": "^3.7.0",
"@sapphire/plugin-i18next": "^6.0.1",
"@sapphire/plugin-logger": "^3.0.6",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"libsodium": "^0.7.13",
"libsodium-wrappers": "^0.7.13",
"node-fetch": "^3.3.2"
},
"lint-staged": {
"src/**/*.ts": [
"yarn lint:fix",
"yarn format"
]
}
}