generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 KB
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": "github-action-skip",
"version": "0.0.0",
"private": true,
"description": "action to define an output depending on commit message",
"keywords": [
"actions",
"node",
"skip",
"ci"
],
"repository": "https://github.com/shiftcode/github-action-skip",
"license": "MIT",
"author": "shiftcode GmbH <team@shiftcode.ch>",
"type": "module",
"main": "lib/main.js",
"scripts": {
"build": "rolldown ./src/index.ts --file ./dist/index.js --format esm --platform node",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"lint": "eslint --fix .",
"lint:ci": "eslint .",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "^20.4.4",
"@commitlint/config-conventional": "^20.4.4",
"@eslint/js": "^10.0.1",
"@octokit/rest": "^22.0.1",
"@shiftcode/branch-utilities": "^5.1.1",
"@types/node": "^24.12.0",
"eslint": "^10.0.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"prettier": "^3.8.1",
"rolldown": "^1.0.0-rc.9",
"sort-package-json": "^3.6.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"engines": {
"node": "^24.0.0"
}
}