@irfanshadikrishad/anilist 1.8.1 → 1.8.3

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.
Files changed (1) hide show
  1. package/package.json +40 -40
package/package.json CHANGED
@@ -1,25 +1,17 @@
1
1
  {
2
2
  "name": "@irfanshadikrishad/anilist",
3
3
  "description": "Minimalist unofficial AniList CLI for Anime and Manga Enthusiasts",
4
+ "version": "1.8.3",
4
5
  "author": "Irfan Shadik Rishad",
5
- "version": "1.8.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
- },
6
+ "license": "MPL-2.0",
15
7
  "scripts": {
8
+ "all": "npm run build && npm run lint && npm run lint:fix && npm run format && npm test",
16
9
  "build": "rm -rf ./bin && tsc",
17
10
  "build:watch": "rm -rf ./bin && tsc -w",
18
11
  "format": "prettier . --write",
19
12
  "format:check": "prettier . --check",
20
13
  "lint": "eslint ./dist",
21
14
  "lint:fix": "eslint ./dist --fix",
22
- "all": "npm run build && npm run lint && npm run lint:fix && npm run format && npm test",
23
15
  "test": "jest ./tests"
24
16
  },
25
17
  "keywords": [
@@ -44,47 +36,55 @@
44
36
  "reading list",
45
37
  "graphql"
46
38
  ],
39
+ "homepage": "https://github.com/irfanshadikrishad/anilist",
40
+ "bugs": {
41
+ "url": "https://github.com/irfanshadikrishad/anilist/issues"
42
+ },
47
43
  "repository": {
48
44
  "type": "git",
49
45
  "url": "https://github.com/irfanshadikrishad/anilist"
50
46
  },
51
- "homepage": "https://github.com/irfanshadikrishad/anilist",
52
- "bugs": {
53
- "url": "https://github.com/irfanshadikrishad/anilist/issues"
47
+ "type": "module",
48
+ "main": "./bin/index.js",
49
+ "types": "./bin/index.d.ts",
50
+ "bin": {
51
+ "anilist": "./bin/index.js"
54
52
  },
55
- "license": "MPL-2.0",
56
53
  "prettier": "@irfanshadikrishad/prettier",
57
- "devDependencies": {
58
- "@babel/preset-env": "^7.28.0",
59
- "@eslint/js": "^9.31.0",
60
- "@irfanshadikrishad/prettier": "^1.1.1",
61
- "@types/jest": "^30.0.0",
62
- "@types/node": "^24.0.15",
63
- "@types/papaparse": "^5.3.16",
64
- "@types/xml2js": "^0.4.14",
65
- "@typescript-eslint/eslint-plugin": "^8.37.0",
66
- "@typescript-eslint/parser": "^8.37.0",
67
- "eslint": "^9.31.0",
68
- "globals": "^16.3.0",
69
- "jest": "^30.0.4",
70
- "prettier": "^3.6.2",
71
- "prettier-plugin-organize-imports": "^4.1.0",
72
- "ts-jest": "^29.4.0",
73
- "ts-node": "^10.9.2",
74
- "typescript": "^5.8.3"
75
- },
76
54
  "dependencies": {
77
- "@irfanshadikrishad/cipher": "^1.3.0",
78
- "chalk": "^5.4.1",
79
- "cli-truncate": "^4.0.0",
80
- "commander": "^14.0.0",
55
+ "@irfanshadikrishad/cipher": "^1.3.2",
56
+ "chalk": "^5.6.2",
57
+ "cli-truncate": "^5.1.0",
58
+ "commander": "^14.0.1",
81
59
  "fast-xml-parser": "^5.2.5",
82
- "inquirer": "^12.8.0",
83
- "jsonrepair": "^3.13.0",
60
+ "inquirer": "^12.9.6",
61
+ "jsonrepair": "^3.13.1",
84
62
  "node-fetch": "^3.3.2",
85
63
  "open": "^10.2.0",
86
64
  "papaparse": "^5.5.3",
87
65
  "tiny-spinner": "^2.0.5",
88
66
  "xml2js": "^0.6.2"
67
+ },
68
+ "devDependencies": {
69
+ "@babel/preset-env": "^7.28.3",
70
+ "@eslint/js": "^9.36.0",
71
+ "@irfanshadikrishad/prettier": "^1.2.3",
72
+ "@types/jest": "^30.0.0",
73
+ "@types/node": "^24.5.2",
74
+ "@types/papaparse": "^5.3.16",
75
+ "@types/xml2js": "^0.4.14",
76
+ "@typescript-eslint/eslint-plugin": "^8.44.0",
77
+ "@typescript-eslint/parser": "^8.44.0",
78
+ "eslint": "^9.36.0",
79
+ "globals": "^16.4.0",
80
+ "jest": "^30.1.3",
81
+ "prettier": "^3.6.2",
82
+ "prettier-plugin-organize-imports": "^4.3.0",
83
+ "ts-jest": "^29.4.4",
84
+ "ts-node": "^10.9.2",
85
+ "typescript": "^5.9.2"
86
+ },
87
+ "publishConfig": {
88
+ "access": "public"
89
89
  }
90
90
  }