commit fce5f04a1f82631bb643a11e9494cedf1fc7e725 Author: He4eT Date: Mon Dec 25 14:23:36 2023 +0100 Init diff --git a/index.js b/index.js new file mode 100755 index 0000000..20aac4a --- /dev/null +++ b/index.js @@ -0,0 +1,3 @@ +#!/usr/bin/env node + +console.log(1234) diff --git a/package.json b/package.json new file mode 100644 index 0000000..6e0d015 --- /dev/null +++ b/package.json @@ -0,0 +1,15 @@ +{ + "name": "fuzzsoma", + "version": "1.0.0", + "description": "SomaFM CLI station-selector", + "main": "index.js", + "scripts": { + "start": "./index.js", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "He4eT", + "bin": { + "fuzzsoma": "./index.js" + }, + "license": "MIT" +}