@irfanshadikrishad/anilist 1.2.16 → 1.3.0-forbidden.6
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/LICENSE +373 -373
- package/LICENSE.md +382 -0
- package/bin/helpers/auth.d.ts +5 -0
- package/bin/helpers/auth.js +350 -33
- package/bin/helpers/lists.js +5 -4
- package/bin/helpers/mutations.d.ts +2 -1
- package/bin/helpers/mutations.js +37 -32
- package/bin/helpers/queries.d.ts +6 -3
- package/bin/helpers/queries.js +180 -150
- package/bin/helpers/truncate.d.ts +6 -0
- package/bin/helpers/truncate.js +10 -0
- package/bin/helpers/types.d.ts +53 -1
- package/bin/helpers/workers.d.ts +3 -2
- package/bin/helpers/workers.js +88 -68
- package/bin/index.js +7 -0
- package/package.json +16 -14
package/bin/index.js
CHANGED
|
@@ -210,6 +210,13 @@ cli
|
|
|
210
210
|
}
|
|
211
211
|
}
|
|
212
212
|
}));
|
|
213
|
+
cli
|
|
214
|
+
.command("autolike")
|
|
215
|
+
.alias("al")
|
|
216
|
+
.description("Autolike following or global activities.")
|
|
217
|
+
.action(() => __awaiter(void 0, void 0, void 0, function* () {
|
|
218
|
+
yield Auth.AutoLike();
|
|
219
|
+
}));
|
|
213
220
|
cli
|
|
214
221
|
.command("social")
|
|
215
222
|
.alias("sol")
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@irfanshadikrishad/anilist",
|
|
3
3
|
"description": "Minimalist unofficial AniList CLI for Anime and Manga Enthusiasts",
|
|
4
4
|
"author": "Irfan Shadik Rishad",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.3.0-forbidden.6",
|
|
6
6
|
"main": "./bin/index.js",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"types": "./bin/index.d.ts",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"format:check": "prettier . --check",
|
|
20
20
|
"lint": "eslint ./dist",
|
|
21
21
|
"lint:fix": "eslint ./dist --fix",
|
|
22
|
-
"all": "npm run lint && npm run lint:fix && npm run format && npm test",
|
|
22
|
+
"all": "npm run build && npm run lint && npm run lint:fix && npm run format && npm test",
|
|
23
23
|
"test": "jest ./tests"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
@@ -54,27 +54,29 @@
|
|
|
54
54
|
},
|
|
55
55
|
"license": "MPL-2.0",
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@babel/preset-env": "^7.26.
|
|
58
|
-
"@eslint/js": "^9.
|
|
57
|
+
"@babel/preset-env": "^7.26.9",
|
|
58
|
+
"@eslint/js": "^9.22.0",
|
|
59
59
|
"@types/jest": "^29.5.14",
|
|
60
|
-
"@types/node": "^22.
|
|
60
|
+
"@types/node": "^22.13.10",
|
|
61
61
|
"@types/papaparse": "^5.3.15",
|
|
62
62
|
"@types/xml2js": "^0.4.14",
|
|
63
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
64
|
-
"eslint": "^9.
|
|
65
|
-
"globals": "^
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
64
|
+
"eslint": "^9.22.0",
|
|
65
|
+
"globals": "^16.0.0",
|
|
66
66
|
"jest": "^29.7.0",
|
|
67
|
-
"prettier": "^3.
|
|
67
|
+
"prettier": "^3.5.3",
|
|
68
68
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
69
|
-
"ts-jest": "^29.2.
|
|
69
|
+
"ts-jest": "^29.2.6",
|
|
70
70
|
"ts-node": "^10.9.2",
|
|
71
|
-
"typescript": "^5.
|
|
71
|
+
"typescript": "^5.8.2"
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
+
"@irfanshadikrishad/cipher": "^1.0.6",
|
|
75
|
+
"cli-truncate": "^4.0.0",
|
|
74
76
|
"commander": "^13.1.0",
|
|
75
|
-
"fast-xml-parser": "^
|
|
76
|
-
"inquirer": "^12.
|
|
77
|
-
"jsonrepair": "^3.
|
|
77
|
+
"fast-xml-parser": "^5.0.9",
|
|
78
|
+
"inquirer": "^12.5.0",
|
|
79
|
+
"jsonrepair": "^3.12.0",
|
|
78
80
|
"node-fetch": "^3.3.2",
|
|
79
81
|
"open": "^10.1.0",
|
|
80
82
|
"papaparse": "^5.5.2",
|