-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 761 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 761 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
{
"name": "wrangler-version-deploy-action-with-metadata",
"version": "1.0.1",
"private": false,
"description": "A GitHub Action to deploy via Wrangler v4 and expose deployment metadata, with customizable messages and tags.",
"main": "dist/index.js",
"scripts": {
"build": "tsup",
"prepare": "pnpm build",
"lint": "echo \"no lint setup for this package yet\""
},
"keywords": [
"github-action",
"cloudflare",
"wrangler",
"deployment",
"metadata",
"ci",
"cd"
],
"author": "Chris Ewald",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/node": "^20.19.24",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
}
}