-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 840 Bytes
/
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
{
"name": "discord-selfbot",
"version": "1.0.0",
"description": "Discord SelfBot",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start:dev": "nodemon",
"start": "npm run build && node build/index.js",
"lint": "eslint . --ext .ts"
},
"author": "Ludo",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.8.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/node-cron": "^3.0.4",
"@types/puppeteer": "^5.4.6",
"dayjs": "^1.11.5",
"node-cron": "^3.0.2",
"puppeteer": "^18.2.1",
"xlsx": "^0.18.5"
}
}