-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 946 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
35
36
37
38
{
"name": "maven-full-artifacts",
"version": "1.0.0",
"private": true,
"description": "",
"main": "lib/main.js",
"scripts": {
"build": "esbuild src/main.ts --platform=node --keep-names --target=node20 --bundle --sourcemap --outfile=dist/index.js",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SWAT-engineering/maven-full-artifacts-action"
},
"keywords": [
"actions",
"maven",
"artifacts"
],
"author": "",
"license": "BSD-2",
"dependencies": {
"@actions/artifact": "2.x",
"@actions/core": "1.x",
"@actions/exec": "1.x",
"@actions/github": "6.x",
"@actions/io": "1.x"
},
"devDependencies": {
"@tsconfig/node20": "20.x",
"@tsconfig/strictest": "2.x",
"@types/node": "20.x",
"esbuild": "0.21.x",
"prettier": "3.x",
"typescript": "5.x"
}
}