forked from LottieFiles/lottie-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "@lottiefiles/lottie-player",
"version": "0.5.1",
"description": "Lottie animation and Telegram Sticker player web components.",
"main": "dist/lottie-player.js",
"module": "dist/lottie-player.js",
"types": "dist/lottie-player.d.ts",
"homepage": "https://lottiefiles.com/web-player",
"repository": "https://github.com/LottieFiles/lottie-player.git",
"bugs": "https://github.com/LottieFiles/lottie-player/issues",
"author": "Jawish Hameed <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn build-lottie && yarn build-tgs",
"build-lottie": "parcel build src/lottie-player.ts --detailed-report 50 --out-file lottie-player.js",
"build-tgs": "parcel build src/tgs-player.ts --detailed-report 50 --out-file tgs-player.js",
"start": "parcel src/index.html"
},
"dependencies": {
"@types/pako": "^1.0.1",
"lit-element": "^2.3.1",
"lottie-web": "^5.6.6",
"pako": "^1.0.11",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"parcel-bundler": "^1.12.4",
"typescript": "^3.4.5"
},
"files": [
"dist/"
],
"keywords": [
"lottie",
"animation",
"lottiefiles",
"web component",
"component",
"lit-element",
"player",
"telegram sticker",
"tgs"
],
"browserslist": [
"> 3%"
],
"publishConfig": {
"access": "public"
}
}