-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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
{
"name": "bluesky-post-action",
"version": "0.0.1-dev",
"private": true,
"description": "A GitHub Action to post to Bluesky Social",
"keywords": [
"bluesky",
"bsky",
"atproto"
],
"homepage": "https://github.com/zentered/bluesky-post-action#readme",
"bugs": {
"url": "https://github.com/zentered/bluesky-post-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/bluesky-post-action.git"
},
"license": "MIT",
"author": "Zentered <[email protected]> (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/patrickheneise)"
],
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist --target es2022 --source-map --license licenses.txt",
"postinstall": "husky install",
"lint": "eslint .",
"start": "node src/index.js",
"test": "node --test",
"prepare": "husky"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,md,yml}": [
"prettier --write"
],
"*.js": [
"eslint --cache --fix"
]
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@atproto/api": "^0.14.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.7.1",
"@vercel/ncc": "^0.38.3",
"commitlint": "^19.7.1",
"eslint": "^9.20.1",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-node": "^11.1.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1"
},
"engines": {
"node": ">=20"
}
}