-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "action-mdbook",
"version": "3.0.0",
"description": "Github action to setup mdbook and optional some popular plugins",
"main": "dist/index.js",
"scripts": {
"build": "tsc && ncc build ./dist/main.js",
"format": "prettier --write .",
"lint": "prettier --check .",
"test": "jest",
"semantic-release": "semantic-release"
},
"author": "Jontze",
"repository": {
"type": "git",
"url": "https://github.com/jontze/action-mdbook"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.5.0",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.9.0",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.2",
"jest": "^27.5.1",
"mock-fs": "jontze/mock-fs#fixSyncTasks",
"prettier": "^3.3.3",
"semantic-release": "^23.1.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}