Forked from
Ad Aures / Castopod
627 commits behind the upstream repository.
-
semantic-release-bot authored
# [1.0.0-beta.6](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2022-02-03) ### Bug Fixes * **activitypub:** add conditions for possibly missing actor properties + add user-agent to requests ([8fbf948f](https://code.podlibre.org/podlibre/castopod-host/commit/8fbf948fbba22ffd33966a1b2ccd42e8f7c1f8a2)) * **activitypub:** add target actor id to like / announce activities to send directly to note's actor ([962dd305](https://code.podlibre.org/podlibre/castopod-host/commit/962dd305f5d3f6eadc68f400e0e8f953827fe20d)) * **activitypub:** add target_actor_id for create activity to broadcast post reply ([0128a21e](https://code.podlibre.org/podlibre/castopod-host/commit/0128a21ec55dcc0a2fbf4081dadb4c4737735ba1)) * **http-signature:** update SIGNATURE_PATTERN allowing signature keys to be sent in any order ([b7f285e4](https://code.podlibre.org/podlibre/castopod-host/commit/b7f285e4e24247fedb94f030356fa6f291f525cc)) * **install:** set message block on forms to show error messages ([3a0a20d5](https://code.podlibre.org/podlibre/castopod-host/commit/3a0a20d59cdae7f166325efb750eaa6e9800ba6e)), closes [#157](https://code.podlibre.org/podlibre/castopod-host/issues/157) * **markdown-editor:** remove unnecessary buttons for podcast and episode editors + add extensions ([9c4f60e0](https://code.podlibre.org/podlibre/castopod-host/commit/9c4f60e00bcbd4f784f12d2a6fed357ad402ee2e)) * **podcast-activity:** check if transcript and chapters are set before including them in audio ([5855a250](https://code.podlibre.org/podlibre/castopod-host/commit/5855a250936f91641efef77650890a18d8e9917f)) * **podcast:** use markdown description value for editor + set prose class to about description ([f304d97b](https://code.podlibre.org/podlibre/castopod-host/commit/f304d97b14e0ef383509cb3bba50beb55bf701ba)), closes [#156](https://code.podlibre.org/podlibre/castopod-host/issues/156)
semantic-release-bot authored# [1.0.0-beta.6](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2022-02-03) ### Bug Fixes * **activitypub:** add conditions for possibly missing actor properties + add user-agent to requests ([8fbf948f](https://code.podlibre.org/podlibre/castopod-host/commit/8fbf948fbba22ffd33966a1b2ccd42e8f7c1f8a2)) * **activitypub:** add target actor id to like / announce activities to send directly to note's actor ([962dd305](https://code.podlibre.org/podlibre/castopod-host/commit/962dd305f5d3f6eadc68f400e0e8f953827fe20d)) * **activitypub:** add target_actor_id for create activity to broadcast post reply ([0128a21e](https://code.podlibre.org/podlibre/castopod-host/commit/0128a21ec55dcc0a2fbf4081dadb4c4737735ba1)) * **http-signature:** update SIGNATURE_PATTERN allowing signature keys to be sent in any order ([b7f285e4](https://code.podlibre.org/podlibre/castopod-host/commit/b7f285e4e24247fedb94f030356fa6f291f525cc)) * **install:** set message block on forms to show error messages ([3a0a20d5](https://code.podlibre.org/podlibre/castopod-host/commit/3a0a20d59cdae7f166325efb750eaa6e9800ba6e)), closes [#157](https://code.podlibre.org/podlibre/castopod-host/issues/157) * **markdown-editor:** remove unnecessary buttons for podcast and episode editors + add extensions ([9c4f60e0](https://code.podlibre.org/podlibre/castopod-host/commit/9c4f60e00bcbd4f784f12d2a6fed357ad402ee2e)) * **podcast-activity:** check if transcript and chapters are set before including them in audio ([5855a250](https://code.podlibre.org/podlibre/castopod-host/commit/5855a250936f91641efef77650890a18d8e9917f)) * **podcast:** use markdown description value for editor + set prose class to about description ([f304d97b](https://code.podlibre.org/podlibre/castopod-host/commit/f304d97b14e0ef383509cb3bba50beb55bf701ba)), closes [#156](https://code.podlibre.org/podlibre/castopod-host/issues/156)
This project manages its dependencies using npm.
Learn more
package.json 3.65 KiB
{
"name": "castopod-host",
"version": "1.0.0-beta.6",
"description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
"private": true,
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://code.podlibre.org/podlibre/castopod-host.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"build:static": "npm run build:icons && npm run build:svg",
"build:icons": "svgo -f app/Resources/icons -o public/assets/icons -r --config=./.svgo.icons.js",
"build:svg": "svgo -f app/Resources/images -o public/assets/images -r --config=./.svgo.js",
"lint": "eslint --ext js,ts app/Resources",
"lint:fix": "eslint --ext js,ts app/Resources --fix",
"lint:css": "stylelint \"app/Resources/**/*.css\"",
"lint:css:fix": "stylelint --fix \"app/Resources/**/*.css\"",
"prettier": "prettier --check --ignore-path .gitignore .",
"prettier:fix": "prettier --write --ignore-path .gitignore .",
"typecheck": "tsc",
"commit": "cz",
"release": "semantic-release",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@amcharts/amcharts4": "^4.10.23",
"@amcharts/amcharts4-geodata": "^4.1.22",
"@codemirror/basic-setup": "^0.19.1",
"@codemirror/commands": "^0.19.7",
"@codemirror/lang-xml": "^0.19.2",
"@codemirror/state": "^0.19.6",
"@codemirror/view": "^0.19.39",
"@floating-ui/dom": "^0.1.10",
"@github/clipboard-copy-element": "^1.1.2",
"@github/hotkey": "^1.6.1",
"@github/markdown-toolbar-element": "^2.1.0",
"@github/time-elements": "^3.1.2",
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@vime/core": "^5.3.1",
"choices.js": "^10.0.0",
"flatpickr": "^4.6.9",
"leaflet": "^1.7.1",
"leaflet.markercluster": "^1.5.3",
"lit": "^2.1.1",
"marked": "^4.0.10",
"wavesurfer.js": "^5.2.0",
"xml-formatter": "^2.6.0"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/gitlab": "^7.0.4",
"@tailwindcss/forms": "^0.4.0-alpha.2",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.0",
"@types/leaflet": "^1.7.8",
"@types/marked": "^4.0.1",
"@types/wavesurfer.js": "^5.2.2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.15",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"lint-staged": "^12.2.0",
"postcss-import": "^14.0.2",
"postcss-nesting": "^10.1.2",
"postcss-preset-env": "^7.2.3",
"postcss-reporter": "^7.0.5",
"prettier": "2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"semantic-release": "^19.0.2",
"stylelint": "^14.2.0",
"stylelint-config-standard": "^24.0.0",
"svgo": "^2.8.0",
"tailwindcss": "^3.0.15",
"typescript": "^4.5.4",
"vite": "^2.7.13",
"vite-plugin-pwa": "^0.11.13",
"workbox-build": "^6.4.2",
"workbox-core": "^6.4.2",
"workbox-routing": "^6.4.2",
"workbox-strategies": "^6.4.2"
},
"lint-staged": {
"*.{js,ts,css,md,json}": "prettier --write",
"*.{ts,js}": "eslint --ext js,ts,tsx app/Resources --fix",
"*.css": "stylelint --fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}