-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 952 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": "@cgoern/fly",
"version": "1.1.0",
"description": "Custom element for rendering Lottie animations.",
"license": "MIT",
"author": "cgoern",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/fly/fly.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/cgoern/fly.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"generate": "stencil generate",
"format": "prettier . --write"
},
"dependencies": {
"@stencil/core": "^2.18.0",
"lottie-web": "^5.9.6"
},
"devDependencies": {
"prettier": "^2.7.1"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"semi": false
}
}