From 926fb0265429940768351caabafac905cdb0af01 Mon Sep 17 00:00:00 2001 From: walcutt Date: Mon, 23 Jun 2025 17:20:45 -0400 Subject: [PATCH] NPM Scaffolding --- .gitignore | 7 ++++++- index.js | 3 +++ package.json | 16 ++++++++++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 index.js create mode 100644 package.json diff --git a/.gitignore b/.gitignore index ceaea36..0cd5b66 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,9 @@ -# ---> Node +# Target Files +inputs/* +outputs/* +temp/* + +#---> Node # Logs logs *.log diff --git a/index.js b/index.js new file mode 100644 index 0000000..ad499f1 --- /dev/null +++ b/index.js @@ -0,0 +1,3 @@ +const params = process.argv; +console.log("Executed with params:"); +console.log(params); \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..5bfa5cd --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "name": "video-pipeline", + "version": "1.0.0", + "description": "Re-implementation / Wrapper of many sequential scripts I use to batch-edit videos for storage & playback.", + "repository": { + "type": "git", + "url": "https://git.chloeherd.codes/walcutt/video-pipeline.git" + }, + "license": "ISC", + "author": "", + "type": "commonjs", + "main": "index.js", + "scripts": { + "pipeline": "node index.js" + } +}