Files
Neon Overlord d2c70bc226 fork: rebrand as integration_gotosocial
Fork of nextcloud/integration_mastodon v5.2.0 (6a56211), AGPL-3.0, with
upstream copyright notices and CHANGELOG preserved unchanged.

Rebranded: app ID, namespace, dashboard widgets, reference provider, icon
component, search provider IDs and every user-facing string. GoToSocial
calls them posts, not toots, and its mascot is a sloth.

Deliberately NOT rebranded: MastodonAPIService, MastodonAPIController,
route names and config keys. They speak the Mastodon client API, which is
what GoToSocial implements -- renaming them would make the code claim a
protocol that does not exist, and would make this fork expensive to rebase
on future upstream releases.

Translations are inherited. Strings reworded by the rebrand fall back to
English; the rest still work in all 124 locales.

Assisted-by: Claude Code:claude-opus-5
2026-08-03 14:51:51 -07:00

69 lines
2.0 KiB
JSON

{
"name": "integration_gotosocial",
"version": "5.2.0",
"description": "GoToSocial integration",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix"
},
"repository": {
"type": "git",
"url": "https://code.bawnet.io/bawnet/integration_gotosocial"
},
"keywords": [
"mastodon"
],
"author": "Julien Veyssier",
"license": "AGPL-3.0",
"bugs": {
"url": "https://code.bawnet.io/bawnet/integration_gotosocial/issues"
},
"homepage": "https://code.bawnet.io/bawnet/integration_gotosocial",
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^9.0.0 || ^10.0.0"
},
"dependencies": {
"@nextcloud/auth": "^2.4.0",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^7.1.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/moment": "^1.3.1",
"@nextcloud/password-confirmation": "^6.0.2",
"@nextcloud/router": "^3.0.1",
"@nextcloud/sharing": "^0.4.0",
"@nextcloud/vue": "^9.3.1",
"vue": "^3.5.25",
"vue-material-design-icons": "^5.3.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.3.0",
"@nextcloud/stylelint-config": "^3.0.1",
"@nextcloud/webpack-vue-config": "^7.0.2",
"eslint-webpack-plugin": "^5.0.2",
"stylelint-webpack-plugin": "^5.0.1",
"terser-webpack-plugin": "^5.6.1"
},
"allowScripts": {
"@nextcloud/webpack-vue-config": true,
"@parcel/watcher": true,
"core-js": true,
"unrs-resolver": true
}
}