peertube-plugin-ncd-sell-st.../package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2023-12-13 00:31:35 +00:00
{
2023-12-13 00:42:42 +00:00
"name": "@ncdmatty/peertube-plugin-ncd-sell-storage",
2023-12-13 00:31:35 +00:00
"description": "Plugin to sell storage subscriptions to users using Stripe",
2023-12-13 00:43:35 +00:00
"version": "1.0.1",
2023-12-13 00:31:35 +00:00
"author": "Nalem",
2023-12-13 00:42:42 +00:00
"bugs": {
"url": "https://git.ncd-serv.fr/ncd/Peertube-plugins"
},
2023-12-13 00:31:35 +00:00
"clientScripts": [
{
"script": "dist/common-client-plugin.js",
"scopes": [
"common"
]
}
],
"css": [
"assets/style.css"
],
"engine": {
"peertube": ">=4.3.0"
},
2023-12-13 00:42:42 +00:00
"homepage": "https://git.ncd-serv.fr/ncd/Peertube-plugins",
2023-12-13 00:31:35 +00:00
"keywords": [
"peertube",
"plugin",
"admin",
"stats"
],
"library": "./main.js",
"scripts": {
"prepare": "npm run build",
"build": "node ./scripts/build.js",
"pl:install": "cd ../../PeerTube && npm run plugin:uninstall -- --npm-name peertube-plugin-ncd-sell-storage && npm run plugin:install -- --plugin-path /Users/thommy/Websites/peertube-dev/plugins/peertube-plugin-ncd-sell-storage"
},
"staticDirs": {
"images": "public/images"
},
"translations": {
"fr-FR": "./languages/fr.json"
},
"devDependencies": {
"esbuild": "^0.14.36"
},
"dependencies": {
"express": "^4.18.1",
"moment": "^2.29.4",
"stripe": "^10.11.0"
2023-12-13 00:42:42 +00:00
},
"main": "main.js",
"repository": {
"type": "git",
"url": "https://gitea.nicecrew.digital/matty/peertube-plugin-ncd-sell-storage"
},
"license": "ISC"
2023-12-13 00:31:35 +00:00
}