-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.44 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
86
87
88
{
"name": "triggerreactor-wiki-bot",
"version": "1.1.0",
"description": "Discord slash command utilities for TriggerReactor developer support",
"author": "Sayakie <sayakie@kakao.com>",
"contributors": [],
"scripts": {
"start": "node --enable-source-maps dist/index.js",
"build": "tsup",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"preinstall": "npx -y only-allow pnpm",
"postinstall": "is-ci || simple-git-hooks"
},
"main": "dist/index.js",
"license": "Apache-2.0",
"private": true,
"packageManager": "pnpm@^8.15.9",
"type": "module",
"imports": {
"#lib/*": "./dist/lib/*"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TriggerReactor/wiki-bot"
},
"bugs": {
"url": "https://github.com/TriggerReactor/wiki-bot/issues/new?labels=bug"
},
"keywords": [
"discord",
"webhook",
"discordbot",
"discord.js",
"slashcommand",
"utilities"
],
"engines": {
"node": ">=16.9.0",
"pnpm": ">=8"
},
"dependencies": {
"@dareharu/utilities": "^0.2.0",
"@discordjs/builders": "^0.16.0",
"@ltd/j-toml": "^1.38.0",
"@sapphire/decorators": "^5.0.0",
"@sapphire/framework": "3.2.0",
"@sapphire/pieces": "^3.10.0",
"@sapphire/result": "^2.7.2",
"@sapphire/utilities": "^3.18.2",
"@skyra/env-utilities": "^1.3.0",
"@skyra/jaro-winkler": "^1.1.1",
"discord-api-types": "^0.38.20",
"discord.js": "^13.17.1",
"undici": "^5.29.0",
"zx": "^7.2.4"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-angular": "^17.8.1",
"@dareharu/eslint-config": "^1.2.1",
"@dareharu/prettier-config": "^1.0.1",
"@dareharu/ts-config": "^1.1.0",
"@favware/cliff-jumper": "^2.2.3",
"@swc/core": "^1.13.3",
"@types/node": "^18.19.123",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"is-ci": "^3.0.1",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"simple-git-hooks": "^2.13.1",
"tslib": "^2.8.1",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
}
}