-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "ez-funimation-dl",
"version": "1.0.0",
"description": "Easily download fair and personal use anime from funimation",
"main": "src/index.ts",
"private": true,
"type": "commonjs",
"scripts": {
"dev": "npx webpack && node dist/index.js",
"build": "npx webpack",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SystemStack/ez-funimation-dl.git"
},
"keywords": [
"funimation",
"download",
"typescript"
],
"author": "Levi Broadnax",
"license": "ISC",
"bugs": {
"url": "https://github.com/SystemStack/ez-funimation-dl/issues"
},
"homepage": "https://github.com/SystemStack/ez-funimation-dl#readme",
"dependencies": {
"node-fetch": "^2.6.1",
"prompts": "^2.4.1"
},
"devDependencies": {
"@types/filesystem": "^0.0.32",
"@types/node": "^16.4.12",
"@types/node-fetch": "^2.5.10",
"@types/prompts": "^2.0.13",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^5.40.0",
"webpack-node-externals": "^3.0.0"
}
}