-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 972 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
{
"name": "sync-markdown-bookstack-action",
"version": "1.0.0",
"description": "An action that syncs markdown files to a book or chapter in BookStack",
"main": "dist/index.js",
"scripts": {
"bundle": "npm run format:write && npm run package",
"package": "ncc build src/index.js --license licenses.txt",
"format:write": "prettier --write **/*.js",
"format:check": "prettier --check **/*.js",
"package:watch": "npm run package -- --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"bookstack",
"markdown",
"sync"
],
"author": "Lazy Bytez <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"axios": "^1.5.0",
"glob": "^10.3.5"
},
"devDependencies": {
"@vercel/ncc": "^0.38.0",
"prettier": "^3.0.3"
}
}