UNPKG

suchtube

Version:

YouTube search as a service, with Slack and Discord integration and CLI

51 lines (50 loc) 1.26 kB
{ "name": "suchtube", "version": "0.9.0", "description": "YouTube search as a service, with Slack and Discord integration and CLI", "type": "module", "bin": { "suchtube": "bin/suchtube" }, "main": "src/search.js", "scripts": { "start": "./bin/suchtube --server", "dev": "nodemon --inspect ./bin/suchtube --server", "test": "ava ./test/test_*.js --verbose", "release:patch": "npm version patch && git push && git push --tags && npm publish", "release:minor": "npm version minor && git push && git push --tags && npm publish", "release:major": "npm version major && git push && git push --tags && npm publish" }, "keywords": [ "youtube", "videos", "slack", "slack-command", "discord", "discord-slash-command", "search", "api", "service", "cli" ], "author": "Marc Anguera Insa @markets", "repository": { "type": "git", "url": "git+https://github.com/markets/suchtube.git" }, "license": "MIT", "engines": { "node": ">=18.0.0" }, "dependencies": { "body-parser": "^1.20.3", "express": "^4.21.2", "open": "^10.2.0", "yargs": "^17.7.2" }, "devDependencies": { "ava": "^6.4.1", "nodemon": "^3.1.10", "sinon": "^21.0.0" } }