-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "release-flag",
"version": "0.0.0",
"author": {
"name": "DeeepDev",
"email": "[email protected]"
},
"keywords": [
"release flag",
"release banner",
"github action"
],
"description": "A github action used to generate fancy release banners for you packages.",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.{js,ts,json}\"",
"format:check": "prettier --check \"**/*.{js,ts,json}\"",
"type-check": "tsc",
"lint": "eslint --ignore-pattern \"dist\" --max-warnings 0 \"**/*.{js,ts}\"",
"build": "tsc && rollup -c rollup.config.mjs"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@octokit/types": "^8.1.0",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-typescript": "^10.0.1",
"@types/node": "^18.11.11",
"@types/sharp": "^0.31.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"prettier-plugin-organize-imports": "^3.2.1",
"rollup": "^3.5.0",
"tslib": "^2.4.1",
"typescript": "^4.6.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"axios": "^1.2.2",
"axios-retry": "^3.3.1",
"form-data": "^4.0.0",
"handlebars": "^4.7.7",
"sharp": "^0.31.2"
}
}