-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 KB
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
40
41
42
43
44
45
{
"name": "@cdwr/nx-fly-deployment-action",
"version": "0.4.0",
"description": "The Nx Fly Deployment Action will manage your deployments to fly.io.",
"repository": {
"type": "git",
"url": "https://github.com/codeware-sthlm/codeware.git",
"directory": "packages/nx-fly-deployment-action"
},
"author": {
"name": "Codeware Sthlm",
"email": "hello@codeware.se",
"url": "https://codeware.se"
},
"license": "MIT",
"keywords": [
"Automation",
"GitHub Actions",
"Deploy",
"Fly.io",
"Nx"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@nx/devkit": "^20.0.0 || ^21.0.0 || ^22.0.2",
"@octokit/webhooks-types": "^7.6.1",
"zod": "^3.23.8"
},
"type": "module",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./index.js",
"require": "./index.cjs"
}
},
"types": "./src/index.d.ts",
"main": "./index.js",
"module": "./index.js"
}