-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.27 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
{
"name": "@jliuhtonen/blu-hawaii",
"type": "module",
"exports": "./dist/index.js",
"version": "1.3.2",
"description": "Scrobble music played on BluOS players to Last.fm",
"scripts": {
"clean": "rm tsconfig.tsbuildinfo && rm -rf ./dist",
"lint": "prettier src --check",
"format": "prettier src --write",
"test": "node --import tsx --test ./test/*.test.ts",
"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": "^22.4.1",
"nock": "^14.0.0-beta.6",
"pino-pretty": "^13.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@jliuhtonen/nightvision": "^0.2.1",
"dotenv": "^16.0.3",
"ky": "^1.2.4",
"pino": "^9.1.0",
"rxjs": "^7.5.2",
"xml-js": "^1.6.11",
"zod": "^3.11.6"
}
}