-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "kukuri-client",
"version": "1.0.4",
"description": "A Discord self-bot client written in TypeScript",
"main": "dist/Main.js",
"author": {
"name": "Mikasuru",
"email": "[email protected]",
"url": "https://www.youtube.com/@kukuri_xyz"
},
"license": "MIT",
"scripts": {
"start": "bun run dist/Main.js",
"dev": "bun run src/Main.ts",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint . --ext .ts",
"test": "jest",
"clean": "rimraf dist"
},
"dependencies": {
"axios": "^1.7.7",
"better-sqlite3": "^11.8.1",
"discord.js": "^14.17.3",
"discord.js-selfbot-v13": "^3.4.6",
"dotenv": "^16.4.7",
"node-notifier": "^10.0.1",
"quick.db": "^9.1.7",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/node-notifier": "^8.0.5",
"@types/sharp": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
}
}