-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 910 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
{
"name": "hello-world-javascript-action",
"version": "1.0.0",
"description": "This action prints \"Hello World\" or \"Hello\" + the name of a person to greet to the log.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --outfile=dist/index.js --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/hello-world-javascript-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/actions/hello-world-javascript-action/issues"
},
"homepage": "https://github.com/actions/hello-world-javascript-action#readme",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0"
},
"devDependencies": {
"@types/node": "^22.5.4",
"esbuild": "^0.23.1"
}
}