-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.81 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": "deleo",
"version": "1.2.3",
"description": "Deleo, a TypeScript-based CLI tool, simplifies Discord content management by enabling efficient deletion of messages in open DMs or specific channels.",
"author": "notsapinho",
"main": "dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"start": "yarn build && yarn start:prod",
"start:prod": "node ./dist/index.js",
"build": "swc src -d dist -D --delete-dir-on-start",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"discord",
"discord.js",
"discord.js-selfbot",
"discord.js-selfbot-v13",
"discord.js-selfbot-v13-typescript",
"message-deleter",
"message-cleaner",
"cli",
"typescript"
],
"files": [
"dist",
"LICENSE",
"README.md"
],
"license": "MIT",
"repository": "https://github.com/notsapinho/deleo",
"homepage": "https://github.com/notsapinho/deleo#readme",
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@swc/cli": "^0.1.65",
"@swc/core": "^1.4.13",
"@types/cli-progress": "^3.11.5",
"@types/eslint": "^8.56.8",
"@types/figlet": "^1.5.8",
"@types/inquirer": "^9.0.7",
"@types/node": "^18.19.31",
"prettier": "^3.2.5",
"typed-emitter": "^2.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@inquirer/core": "^3.1.2",
"@inquirer/type": "^1.2.1",
"@sapphire/result": "^2.6.6",
"axios": "^1.6.8",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^12.0.0",
"discord.js-selfbot-v13": "^3.1.4",
"figlet": "^1.7.0",
"inquirer": "^7.3.3"
},
"packageManager": "[email protected]"
}