-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "1337x",
"version": "1.4.0",
"description": "A Discord bot that uses the 1337x API to gather the most relevant torrents and then send it to the user.",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"test": "jest",
"compile": "tsc",
"lint": "prettier --write ."
},
"author": "Brandon Gallagher",
"license": "ISC",
"dependencies": {
"axios": "^1.3.3",
"discord.js": "^14.8.0",
"fs": "0.0.1-security",
"torrent-search-api": "git+https://github.com/brandongallagher1999/torrent-search-api.git",
"urlencode": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.21.0",
"@types/axios": "^0.14.0",
"@types/jest": "^28.1.1",
"@types/node": "^18.15.3",
"@types/torrent-search-api": "^2.0.0",
"babel-jest": "^28.1.3",
"jest": "^28.1.1",
"prettier": "2.8.4"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"repository": "[email protected]:brandongallagher1999/1337x-Bot.git"
}