@n4tzz/n4lyx 2.7.7 → 2.7.8

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 +47 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@n4tzz/n4lyx",
3
- "version": "2.7.7",
3
+ "version": "2.7.8",
4
4
  "description": "N4lyx - WhatsApp Web API Library powered by N4tzzOfficial",
5
5
  "keywords": [
6
6
  "n4lyx",
@@ -27,10 +27,21 @@
27
27
  "engine-requirements.js"
28
28
  ],
29
29
  "scripts": {
30
+ "build:all": "tsc && typedoc",
31
+ "build:docs": "typedoc",
32
+ "build:tsc": "tsc",
33
+ "changelog:last": "conventional-changelog -p angular -r 2",
34
+ "changelog:preview": "conventional-changelog -p angular -u",
35
+ "changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
36
+ "example": "node --inspect -r ts-node/register Example/example.ts",
37
+ "gen:protobuf": "sh WAProto/GenerateStatics.sh",
38
+ "lint": "eslint src --ext .js,.ts,.jsx,.tsx",
39
+ "lint:fix": "eslint src --fix --ext .js,.ts,.jsx,.tsx",
40
+ "prepack": "echo 'Wileys WhatsApp Library'",
41
+ "prepare": "echo 'Wileys WhatsApp Library'",
30
42
  "preinstall": "node ./engine-requirements.js",
31
- "build": "tsc",
32
- "start": "node lib/index.js",
33
- "test": "echo \"no test\""
43
+ "release": "release-it",
44
+ "test": "jest"
34
45
  },
35
46
  "dependencies": {
36
47
  "@adiwajshing/keyed-db": "^0.2.4",
@@ -43,7 +54,7 @@
43
54
  "cache-manager": "^5.7.6",
44
55
  "cheerio": "^1.0.0-rc.10",
45
56
  "libphonenumber-js": "^1.10.20",
46
- "libsignal": "github:N4tzzOfficial/libsignal-node",
57
+ "libsignal": "github:NaufalYupra/libsignal-node",
47
58
  "lodash": "^4.17.21",
48
59
  "music-metadata": "^7.12.3",
49
60
  "pino": "^9.6",
@@ -51,17 +62,40 @@
51
62
  "uuid": "^10.0.0",
52
63
  "ws": "^8.13.0"
53
64
  },
54
- "peerDependencies": {
65
+ "devDependencies": {
66
+ "@adiwajshing/eslint-config": "github:adiwajshing/eslint-config",
67
+ "@types/got": "^9.6.11",
68
+ "@types/jest": "^27.5.1",
69
+ "@types/node": "^16.18.126",
70
+ "@types/sharp": "^0.29.4",
71
+ "@types/ws": "^8.0.0",
72
+ "conventional-changelog-cli": "^2.2.2",
73
+ "eslint": "^8.0.0",
74
+ "jest": "^27.0.6",
55
75
  "jimp": "^0.16.1",
76
+ "json": "^11.0.0",
77
+ "link-preview-js": "^3.0.0",
78
+ "open": "^8.4.2",
79
+ "qrcode-terminal": "^0.12.0",
80
+ "release-it": "^15.10.3",
56
81
  "sharp": "^0.34.1",
82
+ "ts-jest": "^27.0.3",
83
+ "ts-node": "^10.8.1",
84
+ "typedoc": "^0.27.9",
85
+ "typescript": "^5.8.2"
86
+ },
87
+ "peerDependencies": {
88
+ "audio-decode": "^2.1.3",
89
+ "jimp": "^0.16.1",
57
90
  "link-preview-js": "^3.0.0",
58
- "qrcode-terminal": "^0.12.0"
91
+ "qrcode-terminal": "^0.12.0",
92
+ "sharp": "^0.34.1"
59
93
  },
60
94
  "peerDependenciesMeta": {
61
- "jimp": {
95
+ "audio-decode": {
62
96
  "optional": true
63
97
  },
64
- "sharp": {
98
+ "jimp": {
65
99
  "optional": true
66
100
  },
67
101
  "link-preview-js": {
@@ -69,8 +103,12 @@
69
103
  },
70
104
  "qrcode-terminal": {
71
105
  "optional": true
106
+ },
107
+ "sharp": {
108
+ "optional": true
72
109
  }
73
110
  },
111
+ "packageManager": "yarn@1.22.19",
74
112
  "engines": {
75
113
  "node": ">=20.0.0"
76
114
  }