forked from ed-asriyan/lottie-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 918 Bytes
/
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
{
"name": "tgs-to-gif",
"version": "1.0.0",
"description": "Converts animated stickers for Telegram (*.tgs) to animated GIFs",
"exports": [
"./index.js",
"./utils.js"
],
"type": "module",
"scripts": {
"start": "node cli.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ed-asriyan/tgs-to-gif.git"
},
"author": "Ed Asriyan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ed-asriyan/tgs-to-gif/issues"
},
"homepage": "https://github.com/ed-asriyan/tgs-to-gif#readme",
"dependencies": {
"execa": "^6.1.0",
"lottie-web": "^5.9.5",
"puppeteer": "^14.2.1",
"zlib": "^1.0.5"
},
"devDependencies": {
"argparse": "^2.0.1",
"jest": "^28.1.0"
},
"engines": {
"node": ">=14",
"npm": ">=6.14"
},
"jest": {
"testTimeout": 180000
}
}