add package.json

Signed-off-by: Christian Richter <crichter@owncloud.com>
This commit is contained in:
Christian Richter
2022-07-18 15:01:49 +02:00
parent da81269a7c
commit 29537ea761

37
package.json Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "weirdradio",
"version": "v0.1.0",
"description": "A matrix bot that extracts youtube links and crafts a pseudo-radio from it",
"main": "weirdradio.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dragonchaser/weirdradio.git"
},
"keywords": [
"matrix",
"synapse",
"bot",
"youtube"
],
"author": "Christian Richter",
"license": "MIT",
"bugs": {
"url": "https://github.com/dragonchaser/weirdradio/issues"
},
"homepage": "https://github.com/dragonchaser/weirdradio#readme",
"dependencies": {},
"devDependencies": {
"cheerio": "^1.0.0-rc.3",
"jsonfile": "^6.0.1",
"matrix-bot-sdk": "^0.5.7",
"request": "^2.88.2",
"ws": "~8.8.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}