-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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
60
{
"name": "lujuria",
"version": "3.0.0",
"description": "powerful and automated tool designed to scrape videos from Xvideos, download them, and send them directly to a designated Discord channel via a webhook.",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "tsup",
"start": "node --no-warnings ./dist/index.js",
"dev": "nodemon",
"drizzle:push": "drizzle-kit push"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"cjs"
],
"dts": true,
"outDir": "dist",
"splitting": false,
"sourcemap": true,
"clean": true
},
"keywords": [],
"author": "OSintt",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.623.0",
"@aws-sdk/lib-storage": "^3.623.0",
"@neondatabase/serverless": "^0.9.4",
"axios": "^1.7.3",
"discord-webhook-node": "^1.1.8",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.4",
"ioredis": "^5.4.1",
"video-previewer": "^1.0.6",
"xvideos.js": "^1.0.4"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@swc/core": "^1.7.5",
"@types/node": "^20.14.14",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"drizzle-kit": "^0.22.8",
"eslint": "^9.8.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0"
}
}