-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 KB
/
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
40
41
42
43
44
45
46
{
"name": "perxhealth-static-deploy-action",
"description": "Deploy static assets to an S3 bucket and bust its Cloudfront cache",
"version": "1.0.0",
"author": "Luke Rollans",
"license": "MIT",
"main": "dist/index.js",
"homepage": "https://github.com/perxhealth/static-deploy-action",
"scripts": {
"build": "tsc",
"format": "biome format src --apply",
"format-check": "biome format src",
"lint": "biome lint src",
"typecheck": "tsc",
"package": "ncc build --license licenses.txt",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perxhealth/static-deploy-action.git"
},
"keywords": [
"Perx",
"GitHub",
"Actions",
"JavaScript",
"TypeScript"
],
"bugs": {
"url": "https://github.com/perxhealth/static-deploy-action/issues"
},
"dependencies": {
"@actions/core": "^1.11.1",
"node-emoji": "^2.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"@types/node-emoji": "^2.1.0",
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}