-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 882 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 882 Bytes
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
{
"name": "squarecloud-action",
"description": "Deploy your applications to SquareCloud using Github Actions",
"version": "0.0.0",
"private": true,
"keywords": [],
"author": "richaardev <richard@squarecloud.app>",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt"
},
"exports": {
".": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/squarecloudofc/github-action.git"
},
"bugs": {
"url": "https://github.com/squarecloudofc/github-action/issues"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.2",
"@octokit/rest": "^22.0.0"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@vercel/ncc": "^0.38.3",
"typescript": "^5.8.3"
}
}