-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 976 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
39
{
"name": "setup-spacectl",
"version": "0.0.1",
"description": "GitHub Action to install spacectl",
"main": "dist/index.js",
"scripts": {
"format": "prettier --write src/*.ts",
"format:check": "prettier --check 'src/**/*.ts'",
"lint": "eslint src/*.ts",
"build": "ncc build src/index.ts -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spacelift-io/setup-spacectl.git"
},
"keywords": [
"spacectl",
"spacelift",
"github",
"action"
],
"author": "Spacelift, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/spacelift-io/setup-spacectl/issues"
},
"homepage": "https://github.com/spacelift-io/setup-spacectl#readme",
"dependencies": {
"@actions/core": "^1.0",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0"
},
"devDependencies": {
"@types/node": "^22.0",
"@vercel/ncc": "^0",
"prettier": "^3.0",
"typescript": "^5.0"
}
}