mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-02 14:29:11 +02:00
## [2.0.0-next.4](https://code.castopod.org/adaures/castopod/compare/v2.0.0-next.3...v2.0.0-next.4) (2025-10-07) ### Features * **plugins:** add `submodule` boolean property to manifest schema ([567d5e0](567d5e01a3)) * **plugins:** add spark commands to install, add, update and remove plugins using adaures' cpm ([3d0db5c](3d0db5c64a)) * set min PHP version to 8.4 ([94cea0c](94cea0ce91)) ### Bug Fixes * **analytics:** edit permission filters to include podcast id in routes ([0265775](0265775177)) * **bundle:** edit rsync filter to include resources/icons directory ([265cbba](265cbbac09)) * **fediverse:** add is_private field to posts to flag private posts and hide them from public views ([8ec42c3](8ec42c33ff)) * update api schema to pass form data when publishing an episode ([5dce8cb](5dce8cb949)), closes [#553](https://code.castopod.org/adaures/castopod/issues/553) ### Internal * add discourse social network ([96b2df1](96b2df15b0)) * replace twitter links by bluesky in docs ([b5a403b](b5a403b990)) * update CI to v4.6.3 + all php and js dependencies ([346c00e](346c00e7b5)) * update php and js dependencies to latest ([bbfaa1b](bbfaa1bfc3))
121 lines
4.1 KiB
JSON
121 lines
4.1 KiB
JSON
{
|
|
"name": "castopod",
|
|
"version": "2.0.0-next.4",
|
|
"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 resources/icons -o resources/icons -r --config=./.svgo.icons.cjs",
|
|
"build:svg": "svgo -f resources/static/images -o resources/static/images -r --config=./.svgo.cjs",
|
|
"lint": "eslint",
|
|
"lint:fix": "eslint --fix",
|
|
"lint:css": "stylelint -f verbose \"resources/**/*.css\"",
|
|
"lint:css:fix": "stylelint -f verbose --fix \"resources/**/*.css\"",
|
|
"prettier": "prettier --check . --ignore-path ./.gitignore --ignore-path ./docs/.gitignore",
|
|
"format": "prettier --write . --ignore-path ./.gitignore --ignore-path ./docs/.gitignore",
|
|
"typecheck": "tsc",
|
|
"all-contributors:add": "all-contributors add",
|
|
"all-contributors:generate": "all-contributors generate",
|
|
"commit": "cz",
|
|
"release": "semantic-release",
|
|
"prepare": "is-ci || husky"
|
|
},
|
|
"dependencies": {
|
|
"@amcharts/amcharts4": "^4.10.40",
|
|
"@amcharts/amcharts4-geodata": "^4.1.31",
|
|
"@codemirror/commands": "^6.9.0",
|
|
"@codemirror/lang-html": "^6.4.11",
|
|
"@codemirror/lang-xml": "^6.1.0",
|
|
"@codemirror/language": "^6.11.3",
|
|
"@codemirror/state": "^6.5.2",
|
|
"@codemirror/view": "^6.38.5",
|
|
"@floating-ui/dom": "^1.7.4",
|
|
"@github/clipboard-copy-element": "^1.3.0",
|
|
"@github/hotkey": "^3.1.1",
|
|
"@github/markdown-toolbar-element": "^2.2.3",
|
|
"@github/relative-time-element": "^4.4.8",
|
|
"@patternfly/elements": "^4.2.0",
|
|
"@vime/core": "^5.4.1",
|
|
"choices.js": "^11.1.0",
|
|
"codemirror": "^6.0.2",
|
|
"flatpickr": "^4.6.13",
|
|
"htmlfy": "^1.0.0",
|
|
"leaflet": "^1.9.4",
|
|
"leaflet.markercluster": "^1.5.3",
|
|
"lit": "^3.3.1",
|
|
"marked": "^16.4.0",
|
|
"wavesurfer.js": "^7.11.0",
|
|
"xml-formatter": "^3.6.7"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^20.1.0",
|
|
"@commitlint/config-conventional": "^20.0.0",
|
|
"@csstools/css-tokenizer": "^3.0.4",
|
|
"@eslint/eslintrc": "^3.3.1",
|
|
"@eslint/js": "^9.37.0",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/exec": "^7.1.0",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/gitlab": "^13.2.9",
|
|
"@tailwindcss/forms": "^0.5.10",
|
|
"@tailwindcss/typography": "^0.5.19",
|
|
"@types/leaflet": "^1.9.20",
|
|
"all-contributors-cli": "^6.26.1",
|
|
"commitizen": "^4.3.1",
|
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
"cross-env": "^10.1.0",
|
|
"cssnano": "^7.1.1",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^9.37.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"glob": "^11.0.3",
|
|
"globals": "^16.4.0",
|
|
"husky": "^9.1.7",
|
|
"is-ci": "^4.1.0",
|
|
"lint-staged": "^16.2.3",
|
|
"postcss": "^8.5.6",
|
|
"postcss-import": "^16.1.1",
|
|
"postcss-nesting": "^13.0.2",
|
|
"postcss-preset-env": "^10.4.0",
|
|
"postcss-reporter": "^7.1.0",
|
|
"prettier": "3.6.2",
|
|
"prettier-plugin-organize-imports": "^4.3.0",
|
|
"semantic-release": "^24.2.9",
|
|
"sharp": "^0.34.4",
|
|
"stylelint": "^16.25.0",
|
|
"stylelint-config-standard": "^39.0.1",
|
|
"svgo": "^4.0.0",
|
|
"tailwindcss": "^3.4.18",
|
|
"typescript": "~5.9.3",
|
|
"typescript-eslint": "^8.46.0",
|
|
"vite": "^7.1.9",
|
|
"vite-plugin-codeigniter": "^2.0.0",
|
|
"vite-plugin-inspect": "^11.3.3",
|
|
"vite-plugin-pwa": "^1.0.3",
|
|
"vite-plugin-static-copy": "^3.1.3",
|
|
"workbox-build": "^7.3.0",
|
|
"workbox-core": "^7.3.0",
|
|
"workbox-routing": "^7.3.0",
|
|
"workbox-strategies": "^7.3.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,css,md,json}": "prettier --write",
|
|
"*.{ts,js}": "eslint --fix",
|
|
"*.css": "stylelint --fix"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|