mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

# [2.0.0-next.1](https://code.castopod.org/adaures/castopod/compare/v1.11.0...v2.0.0-next.1) (6/19/2024) ### Bug Fixes * add missing php-icons config file to bundle ([56612f0](56612f0c76
)) * **docs:** add base to og image using env variable ([fe67659](fe676590f2
)) * **import:** rewrite download_file helper to output curl response directly to file ([eb7ad2f](eb7ad2f7e1
)) * include app/Resources/icons folder to bundle ([3fd5efc](3fd5efc795
)) * **platforms:** add platforms service + reduce memory consumption when rendering platform cards ([fe73e9f](fe73e9fae9
)) * set owner email visibility when editing podcast ([fc4f982](fc4f982556
)), closes [#473](https://code.castopod.org/adaures/castopod/issues/473) ### Build System * release next major version as prerelease ([8275226](827522643e
)) ### Features * add Plugins module with base files for plugins architecture ([7253e13](7253e13ac2
)) * **plugins:** abstract settings form for general, podcast and episode types ([b62b483](b62b483ad9
)) * **plugins:** activate / deactivate plugin using settings table ([27d2a1b](27d2a1b0ff
)) * **plugins:** add aside with plugin metadata next to plugin's readme ([dfb7888](dfb7888aeb
)) * **plugins:** add before channel/item hooks to allow podcast/episode data edit when generating rss ([80d2c48](80d2c48ee2
)) * **plugins:** add json schema definition for plugin manifest ([b5eddf3](b5eddf351f
)) * **plugins:** add methods to easily retrieve general, podcast and episode settings in hooks methods ([3a900bb](3a900bbab6
)) * **plugins:** add new field types + validate & cast user data before storing settings ([6f833fc](6f833fc76a
)) * **plugins:** add options to manifest for building forms and storing plugin settings ([3d8aedf](3d8aedf9c3
)) * **plugins:** add settings page for podcast and episode if defined in the plugin's manifest ([89ac92f](89ac92fb41
)) * **plugins:** add siteHead hook to add custom meta tags to public pages ([e80a33b](e80a33bf2a
)) * **plugins:** display errors when plugin is invalid instead of crashing ([8ec7909](8ec79097bb
)) * **plugins:** handle empty states and long strings in UI ([45ac2a4](45ac2a4be9
)) * **plugins:** load and validate plugin manifest.json ([1510e36](1510e36c0a
)) * **plugins:** load plugins using file locator service ([587938d](587938d2bf
)) * **plugins:** load README.md file to view plugin's instructions in UI ([e6bfdfc](e6bfdfc390
)) * **plugins:** register plugins using Plugin.php file instead of namespace + simplify i18n structure ([2035c39](2035c39fd1
)) * **plugins:** uninstall plugins via CLI and admin UI ([9a80de4](9a80de4068
)) * set owner email to hidden by default in podcast create form ([7a6d9df](7a6d9df6db
)) * support podcast:txt tag with verify use case ([57e459e](57e459e187
)), closes [#468](https://code.castopod.org/adaures/castopod/issues/468) ### BREAKING CHANGES * next major release including plugins architecture
110 lines
3.7 KiB
JSON
110 lines
3.7 KiB
JSON
{
|
|
"name": "castopod",
|
|
"version": "2.0.0-next.1",
|
|
"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",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://code.castopod.org/adaures/castopod.git"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"serve": "vite preview",
|
|
"build:static": "pnpm run build:icons && pnpm run build:svg",
|
|
"build:icons": "svgo -f app/Resources/icons -o app/Resources/icons -r --config=./.svgo.icons.cjs",
|
|
"build:svg": "svgo -f app/Resources/images -o public/assets/images -r --config=./.svgo.cjs",
|
|
"lint": "eslint --ext js,ts app/Resources",
|
|
"lint:fix": "eslint --ext js,ts app/Resources --fix",
|
|
"lint:css": "stylelint -f verbose \"app/Resources/**/*.css\"",
|
|
"lint:css:fix": "stylelint -f verbose --fix \"app/Resources/**/*.css\"",
|
|
"prettier": "prettier --check .",
|
|
"prettier:fix": "prettier --write .",
|
|
"typecheck": "tsc",
|
|
"commit": "cz",
|
|
"release": "semantic-release",
|
|
"prepare": "is-ci || husky"
|
|
},
|
|
"dependencies": {
|
|
"@amcharts/amcharts4": "^4.10.38",
|
|
"@amcharts/amcharts4-geodata": "^4.1.28",
|
|
"@codemirror/commands": "^6.5.0",
|
|
"@codemirror/lang-xml": "^6.1.0",
|
|
"@codemirror/language": "^6.10.1",
|
|
"@codemirror/state": "^6.4.1",
|
|
"@codemirror/view": "^6.26.3",
|
|
"@floating-ui/dom": "^1.6.3",
|
|
"@github/clipboard-copy-element": "^1.3.0",
|
|
"@github/hotkey": "^3.1.0",
|
|
"@github/markdown-toolbar-element": "^2.2.3",
|
|
"@github/relative-time-element": "^4.4.0",
|
|
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
|
|
"@vime/core": "^5.4.1",
|
|
"choices.js": "^10.2.0",
|
|
"codemirror": "^6.0.1",
|
|
"flatpickr": "^4.6.13",
|
|
"leaflet": "^1.9.4",
|
|
"leaflet.markercluster": "^1.5.3",
|
|
"lit": "^3.1.3",
|
|
"marked": "^12.0.2",
|
|
"wavesurfer.js": "^7.7.11",
|
|
"xml-formatter": "^3.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^19.3.0",
|
|
"@commitlint/config-conventional": "^19.2.2",
|
|
"@csstools/css-tokenizer": "^2.2.4",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/exec": "^6.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/gitlab": "^13.0.3",
|
|
"@tailwindcss/forms": "^0.5.7",
|
|
"@tailwindcss/typography": "^0.5.12",
|
|
"@types/leaflet": "^1.9.12",
|
|
"@typescript-eslint/eslint-plugin": "^7.7.1",
|
|
"@typescript-eslint/parser": "^7.7.1",
|
|
"all-contributors-cli": "^6.26.1",
|
|
"commitizen": "^4.3.0",
|
|
"cross-env": "^7.0.3",
|
|
"cssnano": "^7.0.0",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"husky": "^9.0.11",
|
|
"is-ci": "^3.0.1",
|
|
"lint-staged": "^15.2.2",
|
|
"postcss": "^8.4.38",
|
|
"postcss-import": "^16.1.0",
|
|
"postcss-nesting": "^12.1.2",
|
|
"postcss-preset-env": "^9.5.9",
|
|
"postcss-reporter": "^7.1.0",
|
|
"prettier": "3.2.5",
|
|
"prettier-plugin-organize-imports": "^3.2.4",
|
|
"semantic-release": "^23.0.8",
|
|
"stylelint": "^16.4.0",
|
|
"stylelint-config-standard": "^36.0.0",
|
|
"svgo": "^3.2.0",
|
|
"tailwindcss": "^3.4.3",
|
|
"typescript": "^5.4.5",
|
|
"vite": "^5.2.10",
|
|
"vite-plugin-pwa": "^0.19.8",
|
|
"workbox-build": "^7.1.0",
|
|
"workbox-core": "^7.1.0",
|
|
"workbox-routing": "^7.1.0",
|
|
"workbox-strategies": "^7.1.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|