-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "setup-binary",
"version": "0.0.0",
"private": true,
"description": "GitHub Action to sets up a binary in $PATH for further use in your workflow",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "biome format --write",
"check": "biome check ./src",
"lint": "biome lint",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run check && npm run build && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@vercel/ncc": "^0.38.3",
"jest": "^30.0.5",
"jest-circus": "^30.0.5",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
}
}