forked from ProxyQB/minio-cache
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.49 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.49 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
{
"name": "minio-cache-s3",
"description": "Github action to cache to S3",
"license": "MIT",
"version": "1.3.1",
"main": "dist/restore.js",
"author": "Philip Lehmann",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"format": "yarn biome format --write src/",
"format-check": "yarn biome format src/",
"lint": "yarn biome lint src/",
"package:restore": "esbuild src/restore.ts --bundle --minify --platform=node --outfile=dist/restore.js",
"package:save": "esbuild src/save.ts --bundle --minify --platform=node --outfile=dist/save.js",
"package": "yarn package:restore && yarn package:save",
"test": "vitest",
"release:build": "yarn format && yarn build && yarn package",
"github:release": "gh release create \"$(npm version patch --git-tag-version=false)\" -t Release -d=false -n \"\" -p=false",
"git:commit": "git add -A && git commit -m \"Release\"",
"git:push": "git push origin main && git push --tags",
"release": "yarn release:build && yarn github:release && yarn git:commit && yarn git:push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philiplehmann/minio-cache.git"
},
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.1",
"minio": "^8.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/minio": "^7.1.1",
"@types/node": "^20.11.17",
"esbuild": "^0.21.0",
"typescript": "5.5.2",
"vitest": "^1.2.2"
},
"packageManager": "yarn@4.3.1"
}