forked from jliuhtonen/blu-hawaii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.06 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
{
"name": "@jliuhtonen/blu-hawaii",
"type": "module",
"exports": "./dist/index.js",
"version": "1.1.4",
"description": "Scrobble music played on BluOS players to Last.fm",
"scripts": {
"lint": "prettier src --check",
"format": "prettier src --write",
"build": "npm run format && npx tsc",
"start": "npm run build && node dist/index.js",
"release-npm": "npm publish --access public",
"release-docker": "docker buildx create --use && docker buildx build --platform linux/amd64,linux/arm64 -t docker.io/jliuhtonen/blu-hawaii:latest -t docker.io/jliuhtonen/blu-hawaii:$npm_package_version -f Containerfile . --push",
"release": "npm run release-npm && npm run release-docker"
},
"author": "Janne Liuhtonen",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"dependencies": {
"@jliuhtonen/nightvision": "^0.2.1",
"dotenv": "^16.0.3",
"ky": "^1.2.4",
"pino": "^8.20.0",
"rxjs": "^7.5.2",
"xml-js": "^1.6.11",
"zod": "^3.11.6"
}
}