peertube-theme-nctv-dark/peertube-plugin-akismet/package.json

39 lines
988 B
JSON
Raw Normal View History

2022-09-23 13:42:06 +00:00
{
"name": "peertube-plugin-akismet",
2023-01-06 08:17:35 +00:00
"version": "0.0.6",
2022-09-23 14:14:38 +00:00
"description": "Reject local comments, remote comments and registrations based on Akismet service",
2022-09-23 13:42:06 +00:00
"engine": {
"peertube": ">=4.3.0"
},
"keywords": [
"peertube",
"plugin"
],
"homepage": "https://framagit.org/framasoft/peertube/official-plugins/tree/master/peertube-plugin-akismet",
"author": "Chocobozzz",
"bugs": "https://framagit.org/framasoft/peertube/official-plugins/issues",
"library": "./main.js",
"staticDirs": {},
"css": [],
2022-09-26 09:23:26 +00:00
"scripts": {
"build": "esbuild client/common-client-plugin.js --minify --bundle --format=esm --outfile=dist/common-client-plugin.js --target=safari11"
},
"clientScripts": [
{
"script": "dist/common-client-plugin.js",
"scopes": [
"common"
]
}
],
"translations": {
"fr-FR": "./languages/fr.json"
},
2022-09-23 13:42:06 +00:00
"dependencies": {
"akismet-api": "^5.3.0"
2022-09-26 09:23:26 +00:00
},
"devDependencies": {
"esbuild": "^0.15.9"
2022-09-23 13:42:06 +00:00
}
}