-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "node-aria2",
"version": "1.1.0",
"description": "Aria2 RPC client for Node.js",
"main": "dist/index.js",
"author": "EternalC0der <s.eternalcoder@gmail.com>",
"license": "MIT",
"keywords": [
"aria2",
"download",
"downloadManager",
"HTTPS",
"HTTP",
"SFTP",
"FTP",
"BitTorrent",
"torrent",
"MetaLink",
"magnet"
],
"files": [
"/dist"
],
"scripts": {
"build": "npx tsc",
"prepare": "yarn build",
"lint": "eslint --ext .js,.ts . --ignore-path ../.gitignore",
"format": "prettier --ignore-path ../.gitignore --write \"**/*.+(js|ts|json)\""
},
"repository": "https://github.com/EternalC0der/node-aria2.git",
"devDependencies": {
"@types/node": "^18.16.3",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"dependencies": {
"events": "^3.3.0",
"ws": "^8.13.0"
}
}