forked from crello/react-lottie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.81 KB
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
65
66
67
68
69
70
{
"name": "@alfonmga/react-lottie-light-ts",
"version": "3.0.0",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"private": false,
"repository": {
"url": "git+https://github.com/alfonmga/react-lottie-light-ts.git",
"type": "git"
},
"license": "MIT",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/react": "^16.9.35",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "2.0.0",
"@typescript-eslint/parser": "2.0.0",
"concurrently": "4.1.1",
"eslint": "6.2.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"prepend-file": "1.3.1",
"prettier": "1.18.2",
"rollup": "1.19.4",
"rollup-plugin-typescript2": "0.22.1",
"ts-node": "8.3.0",
"tslib": "^2.1.0",
"typescript": "4.8.3"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"scripts": {
"start": "concurrently --kill-others \"npm run build-watch\" \"npm run start-example\"",
"gh-pages-deploy": "cd example && npm run deploy",
"build": "rollup -c",
"build-watch": "rollup -c -w",
"test:lint:fix": "npm run test:lint -- --fix"
},
"files": [
"dist"
],
"dependencies": {
"lottie-web": "5.5.9"
},
"keywords": [
"react",
"lottie",
"lottie-web",
"react-lottie",
"animation",
"bodymovin",
"canvas",
"svg",
"after effects",
"typescript"
],
"description": "React/Typescript wrapper for awesome Airbnb's [lottie-web](https://github.com/airbnb/lottie-web) lib.",
"bugs": {
"url": "https://github.com/alfonmga/react-lottie-light-ts/issues"
},
"homepage": "https://github.com/alfonmga/react-lottie-light-ts#readme",
"directories": {
"example": "example",
"test": "test"
},
"author": ""
}