sanic/package.json

17 lines
349 B
JSON
Raw Normal View History

2023-10-17 23:12:33 +02:00
{
"name": "sanic",
"module": "server.ts",
"type": "module",
"scripts": {
2023-10-18 00:40:17 +02:00
"start": "bun run server.ts",
"init": "mkdir -p /tmp/sanic/{music,playlists}; touch /tmp/sanic/mpd_db",
"mpd": "mpd --no-daemon ./mpd.conf"
2023-10-17 23:12:33 +02:00
},
"devDependencies": {
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}