-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 957 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
{
"name": "@pbrisbin/setup-tool-action",
"version": "0.0.0",
"description": "",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build lib/main.js && sed -i 's/\\x0D$//' ./dist/index.js",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"test": "jest",
"readme": "npx action-docs -u && prettier --write README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pbrisbin/setup-tool-action.git"
},
"author": "Patrick Brisbin <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.1",
"action-docs": "^2.5.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3",
"jest": "^29.3.1",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}