-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.21 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"$schema": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/package.json",
"name": "hakase",
"private": true,
"version": "2.3.0",
"author": "Sayakie <sayakie@kakao.com>",
"description": "Discord bot to let y'all explore Pixelmon Pokémon information",
"contributors": [],
"imports": {
"#lib/*": "./dist/lib/*"
},
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"postinstall": "is-ci || simple-git-hooks",
"start": "node --enable-source-maps dist/index.js",
"build": "tsup",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"lint": "eslint --fix src/**/*.ts",
"lint:dry-run": "eslint --fix-dry-run src/**/*.ts"
},
"packageManager": "pnpm@^8.15.9",
"type": "module",
"main": "./dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Sayakie/Hakase.git"
},
"bugs": {
"url": "https://github.com/Sayakie/Hakase/issues/new?labels=bug:unverified",
"email": "sayakie@kakao.com"
},
"engines": {
"node": ">=v16.17.0",
"pnpm": "^8"
},
"devEngines": {
"node": ">=16.13",
"pnpm": ">=7.5.0 <8"
},
"dependencies": {
"@discordjs/builders": "^1.9.0",
"@frutbits/pino-logger": "^4.0.0",
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord.js-utilities": "^7.3.1",
"@sapphire/framework": "^5.3.1",
"@sapphire/pieces": "^4.3.1",
"@sapphire/plugin-i18next": "^7.1.3",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-scheduled-tasks": "^10.0.2",
"@sapphire/result": "^2.7.2",
"@sapphire/shapeshift": "^3.9.7",
"@sapphire/stopwatch": "^1.5.4",
"@sapphire/time-utilities": "^1.7.14",
"@sapphire/utilities": "^3.18.1",
"@skyra/env-utilities": "^1.3.0",
"@skyra/jaro-winkler": "^1.1.1",
"binarytf": "^2.1.3",
"bullmq": "^5.26.2",
"colorette": "^2.0.20",
"discord-api-types": "^0.37.105",
"discord.js": "^14.16.3",
"ioredis": "^5.4.1",
"korean-regexp": "^1.0.13",
"merge-options": "^3.0.4",
"parse-json": "^8.1.0",
"pino-pretty": "^10.3.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-angular": "^18.6.1",
"@favware/cliff-jumper": "^2.2.3",
"@sapphire/ts-config": "^5.0.1",
"@swc/core": "^1.9.2",
"@types/node": "^20.17.6",
"@types/parse-json": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-early-return": "link:vendor\\eslint-plugin-prefer-early-return",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"turbo": "^1.13.4",
"typescript": "^5.6.3",
"typescript-eslint-language-service": "^5.0.5",
"typescript-jsdoctag-completions-plugin": "1.5.1-beta",
"vitest": "^1.6.0"
}
}