-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 909 Bytes
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": "dailyshuffle",
"description": "Create shuffled versions of your Spotify playlists, refreshed every day",
"version": "0.1.0",
"module": "src/main.ts",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"private": false,
"scripts": {
"dev": "bun run --watch --no-clear-screen ./src/main.ts",
"release": "./release.sh",
"docker": "bun release && docker build -t daily-shuffle . && docker tag daily-shuffle:latest nonbin/daily-shuffle:latest"
},
"type": "module",
"author": "Alice Jacka",
"repository": "https://github.com/non-bin/dailyShuffle",
"homepage": "https://github.com/non-bin/dailyShuffle#readme",
"bugs": {
"url": "https://github.com/non-bin/dailyShuffle/issues"
},
"license": "AGPL-3.0-or-later",
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error"
}
}
}