generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
39 lines (39 loc) · 1002 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
32
33
34
35
36
37
38
39
{
"name": "jekyll-action-ts",
"version": "2.3.4",
"private": true,
"description": "A GitHub Action to build and publish Jekyll sites to GitHub Pages without Docker",
"main": "src/main.ts",
"scripts": {
"build": "ncc build ./src/main.ts",
"all": "prettier --write **/*.ts && eslint src/**/*.ts && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limjh16/jekyll-action-ts.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "limjh16",
"license": "MIT",
"dependencies": {
"@actions/cache": "^3.0.6",
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/glob": "^0.1.1",
"@types/prettier": "^2.1.5",
"prettier": "^2.1.2"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/parser": "^5.43.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^8.27.0",
"eslint-plugin-github": "^4.1.1",
"js-yaml": "^3.14.0",
"typescript": "^4.9.3"
}
}