frameloom/package.json

36 lines
1.0 KiB
JSON

{
"name": "frameloom",
"version": "1.0.3",
"description": "Node script to generate flicker videos by interweaving frames from multiple videos",
"main": "frameloom",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm --no-git-tag-version version patch",
"compile": "./node_modules/.bin/tsc src/frameloom.ts --outFile ./frameloom --noImplicitAny --lib ES2017 -t ES2017 --moduleResolution Node",
"build": "node build.js",
"docs": "sh ./scripts/docs.sh",
"examples": "sh ./scripts/examples.sh",
"examples:youtube": "sh ./scripts/examples_youtube.sh",
"examples:assemble": "sh ./scripts/examples_assemble.sh"
},
"author": "sixteenmillimeter",
"license": "MIT",
"dependencies": {
"commander": "^7.2.0",
"fs-extra": "^9.1.0"
},
"devDependencies": {
"@types/node": "^14.14.36",
"jsdoc-to-markdown": "^7.0.1",
"pkg": "^4.5.1",
"qunit": "^2.14.1",
"typescript": "^4.2.3"
},
"pkg": {
"scripts": [
"./frameloom",
"./lib/**/*"
]
}
}