-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "ryu-self",
"version": "0.0.1",
"description": "A selfbot made in Typescript from scratch by me.",
"author": {
"name": "ryu#9242",
"url": "https://github.com/JauumVictor"
},
"main": "/dist/SelfLauncher.js",
"license": "MIT",
"engines": {
"node": "18.x",
"npm": "9.x"
},
"scripts": {
"build": "npx tsc --project tsconfig.json --pretty --noEmitOnError && echo Compiled successfully!",
"clean": "rmdir /s dist",
"start": "node dist/SelfLauncher.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@types/node": "^20.2.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.41.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@sapphire/async-queue": "^1.5.0",
"@sapphire/snowflake": "^3.5.1",
"discord-api-types": "0.37.37",
"dotenv": "^16.0.3",
"winston": "^3.8.2",
"ws": "^8.13.0",
"zlib-sync": "^0.1.8"
}
}