-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1012 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
{
"name": "floating-tags-action",
"version": "0.1.0",
"description": "Ensures that all tags in the repository in the current path have corresponding major version tags.",
"main": "index.ts",
"scripts": {
"lint": "eslint .",
"dist": "ncc build -o dist index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giantswarm/floating-tags-action.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/giantswarm/floating-tags-action/issues"
},
"homepage": "https://github.com/giantswarm/floating-tags-action#readme",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/exec": "^1.0.4",
"@actions/tool-cache": "^2.0.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/node": "22.12.0",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"@vercel/ncc": "0.38.1",
"eslint": "9.19.0",
"typescript": "5.7.3"
}
}