-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "@idotj/mastodon-embed-timeline",
"version": "4.4.2",
"description": "Displays Mastodon timeline with posts embed in your website. Very easy to setup, no dependencies, no trackers, cross-browser, WCAG compliant and fully responsive.",
"license": "GNU",
"author": {
"name": "idotj",
"url": "https://www.idotj.com"
},
"keywords": [
"mastodon",
"widget",
"timeline",
"embedded",
"fediverse"
],
"homepage": "https://gitlab.com/idotj/mastodon-embed-timeline",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/idotj/mastodon-embed-timeline.git"
},
"bugs": {
"url": "https://gitlab.com/idotj/mastodon-embed-timeline/-/issues"
},
"private": false,
"type": "module",
"main": "dist/mastodon-timeline.esm.js",
"types": "dist/mastodon-timeline.d.ts",
"style": "dist/mastodon-timeline.min.css",
"scripts": {
"test": "echo \"No test specified\" && exit 1",
"build": "npm run build:minifyCss && rollup -c",
"build:minifyCss": "cleancss src/mastodon-timeline.css -o dist/mastodon-timeline.min.css"
},
"devDependencies": {
"clean-css-cli": "^5.6.3",
"rollup": "^4.14.0",
"@rollup/plugin-terser": "^0.4.4"
},
"files": [
"dist",
"src"
]
}