
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
scenes-to-json
Advanced tools
Translation Vnjson scenes to json bundle
global
npm install -g scenes-to-json
local
npm install scenes-to-json
Console
stj ./scenes ./dist
stj ./src ./scenes --url ./scenes
Programmaticly
const scenesToJson = require('scenes-to-json');
//JSON_SCHEMA
let src = './example/src';
let dist = './example/dist';
var assetsURL = './dist'; //default = ./scenes
/**
{
assets: {
name: '',
url: `${assetsURL}/assets/background.jpg`
}
}
*/
scenesToJson(src, dist, (err, sceneName, labelName)=>{
if(err){
console.log("\x1b[32m"+err.reason);
console.log("\x1b[31m"+sceneName+'/'+ labelName+"\x1b[0m"+"\x1b[33m");
console.log('\x1b[36mline', err.mark.line, 'column', err.mark.column);
console.log("\x1b[33m"+err.mark.snippet);
}
else{
console.log('\x1b[35m [ \x1b[36m scenes build \x1b[35m ]');
}
}, assetsURL);
input
/src/
├───volume_1
│ ├───assets
│ │ ├───background.png
│ │ └───audio1.mp3
│ ├───chapter_2.yaml
│ └───$init.yaml
├───volume_2
│ ├───assets
│ │ └───char1.png
│ ├───data
│ │ ├───somescritp.py //plane_text to json
│ │ └───somefile.txt
│ ├───label_prefix
│ │ ├───label_1.yaml
│ │ └───label_2.yaml
│ │
│ └───$init.yaml
output
/dist/
├───assets
│ ├───background.png
│ └───audio1.mp3
└───vn.json
MIT License (MIT)
FAQs
Transformation Vnjson scenes to json bundle
The npm package scenes-to-json receives a total of 15 weekly downloads. As such, scenes-to-json popularity was classified as not popular.
We found that scenes-to-json demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.