-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "mastodon-widget",
"version": "0.2.1",
"description": "Mastodon Widgets as Web Components",
"author": {
"name": "Andreas Gohr",
"email": "andi@splitbrain.org",
"url": "https://splitbrain.org"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/mastodon-widget/mastodon-widget.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/splitbrain/mastodon-widget.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"pretty": "prettier . --write"
},
"devDependencies": {
"@stencil/core": "^4.7.0",
"@types/jest": "^29.5.6",
"@types/node": "^16.18.11",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"prettier": "3.1.0",
"puppeteer": "21.1.1"
},
"license": "MIT"
}