fix: scripts

Signed-off-by: martin <martin.labat92@gmail.com>
This commit is contained in:
martin 2023-02-14 00:45:27 +01:00
parent bf3ea6ad35
commit ad306c90e3
No known key found for this signature in database
GPG key ID: 4544CC55835A3B9E

View file

@ -4,7 +4,11 @@
"description": "exporter for immich", "description": "exporter for immich",
"main": "src/main.go", "main": "src/main.go",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1",
"dev" : "go run ./src",
"dev:env" : "go run ./src -e",
"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"
}, },
"keywords": [ "keywords": [
"exporter", "exporter",
@ -15,5 +19,5 @@
"prometheus" "prometheus"
], ],
"author": "martabal", "author": "martabal",
"license": "ISC" "license": "MIT"
} }