forked from aarsteinmedia/dotlottie-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.91 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "dotlottie-player",
"version": "2.5.6",
"description": "Web Component for playing Lottie animations in your web app. Previously @johanaarstein/dotlottie-player",
"exports": {
".": {
"import": "./dist/esm/index.js",
"node": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/esm/index.js",
"unpkg": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"homepage": "https://www.aarstein.media/en/dotlottie-player",
"repository": {
"url": "https://github.com/aarsteinmedia/dotlottie-player.git",
"type": "git"
},
"bugs": "https://github.com/aarsteinmedia/dotlottie-player/issues",
"author": {
"name": "Johan Martin Aarstein",
"email": "[email protected]",
"url": "https://www.aarstein.media",
"organization": "Aarstein Media"
},
"license": "GPL-2.0-or-later",
"scripts": {
"build": "rimraf ./dist && rollup -c",
"build:types": "rimraf ./types && tsc",
"build:cem": "npx cem analyze --config cem.config.mjs",
"prod": "pnpm build:types && pnpm build && pnpm build:cem",
"dev": "rollup -c -w --environment NODE_ENV:development",
"lint": "tsc && eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"fflate": "^0.8.2",
"lit": "^3.1.2",
"lottie-web": "^5.12.2"
},
"peerDependencies": {
"@types/react": ">= 16.0.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.9.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@swc/core": "^1.4.8",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"autoprefixer": "^10.4.18",
"esbuild-sass-plugin": "^3.2.0",
"eslint": "^8.57.0",
"eslint-plugin-lit": "^1.11.0",
"postcss-flexbugs-fixes": "^5.0.2",
"rimraf": "^5.0.5",
"rollup": "^4.13.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-html-literals": "^1.1.8",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-postcss-lit": "^2.1.0",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-summary": "^2.0.0",
"rollup-plugin-swc3": "^0.11.0",
"sass": "^1.72.0",
"ts-lit-plugin": "^2.0.2",
"typescript": "^5.4.2"
},
"customElements": "dist/custom-elements.json",
"files": [
"dist",
"README.md"
],
"keywords": [
"lottie",
"dotlottie",
"animation",
"web component",
"component",
"lit-element",
"svg",
"vector",
"player"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 8.17.0"
},
"funding": {
"type": "paypal",
"url": "https://www.paypal.com/donate/?hosted_button_id=E7C7DMN8KSQ6A"
}
}