24 lines
620 B
JSON
24 lines
620 B
JSON
{
|
|
"name": "immich-exporter",
|
|
"version": "1.1.1",
|
|
"description": "exporter for immich",
|
|
"main": "src/main.go",
|
|
"scripts": {
|
|
"build" : "go build -o ./immich-exporter.out ./src && ./immich-exporter.out -e",
|
|
"build:env" : "go build -o ./immich-exporter.out ./src && ./immich-exporter.out -e",
|
|
"dev" : "go run ./src",
|
|
"dev:env" : "go run ./src -e",
|
|
"test": "go test -v ./src/tests",
|
|
"update": "go get -u ./src && go mod tidy"
|
|
},
|
|
"keywords": [
|
|
"exporter",
|
|
"immich",
|
|
"grafana",
|
|
"dashboard",
|
|
"metrics",
|
|
"prometheus"
|
|
],
|
|
"author": "martabal",
|
|
"license": "MIT"
|
|
}
|