forked from AlenVelocity/wa-sticker-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "wa-sticker-formatter",
"version": "4.4.4",
"description": "Sticker Creator for WhatsApp",
"main": "dist",
"types": "dist",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p .",
"doc": "typedoc",
"lint": "eslint \"src/**/*.ts\"",
"prepublish": "npm run build",
"fmt": "prettier --config .prettierrc \"**/*.{ts,mjs}\" --write",
"test": "mocha --timeout 60000 -r ts-node/register \"tests/**/*.test.ts\"",
"clean:webp": "find ./ -name '*.webp' -delete",
"release": "release-it",
"examples": "ts-node ./examples/index.ts"
},
"keywords": [
"whatsapp",
"stickers",
"whatsapp-stickers",
"webp"
],
"author": {
"name": "Alen Yohannan",
"email": "alenyohannan71@gmail.com",
"url": "https://github.com/AlenVelocity"
},
"license": "MIT",
"repository": {
"url": "https://github.com/AlenVelocity/wa-sticker-formatter"
},
"issues": "https://github.com/AlenVelocity/wa-sticker-formatter/issues",
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.18",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.13",
"@types/sharp": "^0.28.5",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"mocha": "^9.1.1",
"prettier": "^2.3.2",
"release-it": "^14.11.6",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typedoc": "^0.21.5",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.1",
"file-type": "^16.5.3",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^10.0.0",
"image-size": "^1.0.0",
"node-webpmux": "^3.1.0",
"sharp": "^0.30.0"
}
}