@irfanshadikrishad/anilist 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -5
- package/bin/index.js +1 -1
- package/package.json +73 -73
- package/assets/binance.jpg +0 -0
package/README.md
CHANGED
|
@@ -229,9 +229,4 @@ Since you are creating your own API client for login no else else can get your c
|
|
|
229
229
|
|
|
230
230
|
Want to contribute to the project? Check out complete guideline [here](CONTRIBUTING.md).
|
|
231
231
|
|
|
232
|
-
#### Donation
|
|
233
|
-
|
|
234
|
-
<img src='/assets/binance.jpg' alt='irfanshadikrishad_binance_pay' width='200px'><br>
|
|
235
|
-
Support the project if you find it useful to you.
|
|
236
|
-
|
|
237
232
|
#### **_Thanks for visiting 💙_**
|
package/bin/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@irfanshadikrishad/anilist",
|
|
3
|
-
"description": "Minimalist unofficial AniList CLI for Anime and Manga Enthusiasts",
|
|
4
|
-
"author": "Irfan Shadik Rishad",
|
|
5
|
-
"version": "1.1.
|
|
6
|
-
"main": "./bin/index.js",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"types": "./bin/index.d.ts",
|
|
9
|
-
"bin": {
|
|
10
|
-
"anilist": "./bin/index.js"
|
|
11
|
-
},
|
|
12
|
-
"publishConfig": {
|
|
13
|
-
"access": "public"
|
|
14
|
-
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "rm -rf ./bin && tsc -w",
|
|
17
|
-
"format": "prettier . --write",
|
|
18
|
-
"format:check": "prettier . --check",
|
|
19
|
-
"lint": "eslint ./dist",
|
|
20
|
-
"lint:fix": "eslint ./dist --fix",
|
|
21
|
-
"all": "npm run lint && npm run lint:fix && npm run format"
|
|
22
|
-
},
|
|
23
|
-
"keywords": [
|
|
24
|
-
"anilist",
|
|
25
|
-
"CLI",
|
|
26
|
-
"anime",
|
|
27
|
-
"manga",
|
|
28
|
-
"anime list",
|
|
29
|
-
"manga list",
|
|
30
|
-
"anime tracker",
|
|
31
|
-
"manga tracker",
|
|
32
|
-
"anilist API",
|
|
33
|
-
"anime progress",
|
|
34
|
-
"manga progress",
|
|
35
|
-
"media list",
|
|
36
|
-
"export anime",
|
|
37
|
-
"import anime",
|
|
38
|
-
"export manga",
|
|
39
|
-
"import manga",
|
|
40
|
-
"status tracker",
|
|
41
|
-
"watchlist",
|
|
42
|
-
"reading list",
|
|
43
|
-
"graphql"
|
|
44
|
-
],
|
|
45
|
-
"repository": {
|
|
46
|
-
"type": "git",
|
|
47
|
-
"url": "https://github.com/irfanshadikrishad/anilist"
|
|
48
|
-
},
|
|
49
|
-
"homepage": "https://github.com/irfanshadikrishad/anilist",
|
|
50
|
-
"bugs": {
|
|
51
|
-
"url": "https://github.com/irfanshadikrishad/anilist/issues"
|
|
52
|
-
},
|
|
53
|
-
"license": "MPL-2.0",
|
|
54
|
-
"devDependencies": {
|
|
55
|
-
"@eslint/js": "^9.
|
|
56
|
-
"@types/json2csv": "^5.0.7",
|
|
57
|
-
"@types/node": "^22.
|
|
58
|
-
"eslint": "^9.
|
|
59
|
-
"globals": "^15.
|
|
60
|
-
"prettier": "^3.
|
|
61
|
-
"prettier-plugin-organize-imports": "^4.1.0",
|
|
62
|
-
"typescript": "^5.
|
|
63
|
-
"typescript-eslint": "^8.
|
|
64
|
-
},
|
|
65
|
-
"dependencies": {
|
|
66
|
-
"commander": "^12.1.0",
|
|
67
|
-
"fast-xml-parser": "^4.5.0",
|
|
68
|
-
"inquirer": "^12.
|
|
69
|
-
"json2csv": "^6.0.0-alpha.2",
|
|
70
|
-
"node-fetch": "^3.3.2",
|
|
71
|
-
"open": "^10.1.0"
|
|
72
|
-
}
|
|
73
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@irfanshadikrishad/anilist",
|
|
3
|
+
"description": "Minimalist unofficial AniList CLI for Anime and Manga Enthusiasts",
|
|
4
|
+
"author": "Irfan Shadik Rishad",
|
|
5
|
+
"version": "1.1.1",
|
|
6
|
+
"main": "./bin/index.js",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"types": "./bin/index.d.ts",
|
|
9
|
+
"bin": {
|
|
10
|
+
"anilist": "./bin/index.js"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "rm -rf ./bin && tsc -w",
|
|
17
|
+
"format": "prettier . --write",
|
|
18
|
+
"format:check": "prettier . --check",
|
|
19
|
+
"lint": "eslint ./dist",
|
|
20
|
+
"lint:fix": "eslint ./dist --fix",
|
|
21
|
+
"all": "npm run lint && npm run lint:fix && npm run format"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"anilist",
|
|
25
|
+
"CLI",
|
|
26
|
+
"anime",
|
|
27
|
+
"manga",
|
|
28
|
+
"anime list",
|
|
29
|
+
"manga list",
|
|
30
|
+
"anime tracker",
|
|
31
|
+
"manga tracker",
|
|
32
|
+
"anilist API",
|
|
33
|
+
"anime progress",
|
|
34
|
+
"manga progress",
|
|
35
|
+
"media list",
|
|
36
|
+
"export anime",
|
|
37
|
+
"import anime",
|
|
38
|
+
"export manga",
|
|
39
|
+
"import manga",
|
|
40
|
+
"status tracker",
|
|
41
|
+
"watchlist",
|
|
42
|
+
"reading list",
|
|
43
|
+
"graphql"
|
|
44
|
+
],
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/irfanshadikrishad/anilist"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://github.com/irfanshadikrishad/anilist",
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/irfanshadikrishad/anilist/issues"
|
|
52
|
+
},
|
|
53
|
+
"license": "MPL-2.0",
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@eslint/js": "^9.17.0",
|
|
56
|
+
"@types/json2csv": "^5.0.7",
|
|
57
|
+
"@types/node": "^22.10.2",
|
|
58
|
+
"eslint": "^9.17.0",
|
|
59
|
+
"globals": "^15.13.0",
|
|
60
|
+
"prettier": "^3.4.2",
|
|
61
|
+
"prettier-plugin-organize-imports": "^4.1.0",
|
|
62
|
+
"typescript": "^5.7.2",
|
|
63
|
+
"typescript-eslint": "^8.18.0"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"commander": "^12.1.0",
|
|
67
|
+
"fast-xml-parser": "^4.5.0",
|
|
68
|
+
"inquirer": "^12.2.0",
|
|
69
|
+
"json2csv": "^6.0.0-alpha.2",
|
|
70
|
+
"node-fetch": "^3.3.2",
|
|
71
|
+
"open": "^10.1.0"
|
|
72
|
+
}
|
|
73
|
+
}
|
package/assets/binance.jpg
DELETED
|
Binary file
|