-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.34 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
51
52
53
{
"name": "setup-butler",
"version": "1.5.0",
"private": true,
"description": "Set up itch.io's butler tool in your GitHub Actions workflow",
"main": "build/main.js",
"scripts": {
"package": "tsc && ncc build --minify",
"prepare": "husky install",
"test": "jest"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.md": "markdownlint **/*.md --ignore node_modules",
"**/*.ts": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdno/setup-butler.git"
},
"keywords": [
"github",
"action",
"itch.io",
"butler"
],
"author": "Jan David Nose",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdno/setup-butler/issues"
},
"homepage": "https://github.com/jdno/setup-butler#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.0",
"jest": "^29.5.0",
"lint-staged": "^15.0.0",
"markdownlint-cli": "^0.42.0",
"prettier": "3.3.3",
"ts-jest": "^29.0.5",
"typescript": "^5.0.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1"
}
}