NPM Scaffolding

This commit is contained in:
walcutt 2025-06-23 17:20:45 -04:00
parent 5da96cea24
commit 926fb02654
3 changed files with 25 additions and 1 deletions

7
.gitignore vendored
View File

@ -1,4 +1,9 @@
# ---> Node
# Target Files
inputs/*
outputs/*
temp/*
#---> Node
# Logs
logs
*.log

3
index.js Normal file
View File

@ -0,0 +1,3 @@
const params = process.argv;
console.log("Executed with params:");
console.log(params);

16
package.json Normal file
View File

@ -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"
}
}