-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.44 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.44 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
{
"name": "@synapsmedia/ghost-activitypub-embed",
"version": "0.7.2",
"description": "Web component to display ActivityPub feeds from Ghost blogs",
"main": "ghap-embed.js",
"module": "ghap-embed.js",
"files": [
"ghap-embed.js"
],
"scripts": {
"dev": "npx serve -p 8000",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/synapsmedia/ghost-activitypub-embed.git"
},
"keywords": [
"web-component",
"ghost",
"activitypub",
"fediverse"
],
"author": "Synaps Media",
"license": "MIT",
"bugs": {
"url": "https://github.com/synapsmedia/ghost-activitypub-embed/issues"
},
"homepage": "https://github.com/synapsmedia/ghost-activitypub-embed#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^13.1.4",
"semantic-release": "^24.2.3"
},
"overrides": {
"@semantic-release/npm": "^13.1.4"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
}
}