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

# [1.8.0](https://code.castopod.org/adaures/castopod/compare/v1.7.4...v1.8.0) (1/15/2024) ### Bug Fixes * **episode-form:** add required validation rules for title and slug ([30a3473](30a3473863
)), closes [#420](https://code.castopod.org/adaures/castopod/issues/420) * **import:** check for empty string when generating podcast guid for feeds not including one ([ac5336f](ac5336fbc5
)) * **install:** add created superadmin to most powerful group in instance, ie. superadmin ([2ed511f](2ed511f8a0
)) * **persons:** delete person avatar when deleting a person ([c1ec98c](c1ec98c956
)), closes [#419](https://code.castopod.org/adaures/castopod/issues/419) * **platforms:** add matrix.org as a social platform ([9178c3f](9178c3f3af
)), closes [#421](https://code.castopod.org/adaures/castopod/issues/421) ### Features * **admin:** add tooltip for not authorized routes ([f7f9baf](f7f9bafc3e
)) * **admin:** emphasize unprivileged items in sidebar with "prohibited" icon ([0bd7dde](0bd7ddea58
)) * allow hiding owner's email in public RSS feed ([222e02a](222e02a2af
)) * **persons:** order persons by full_name ASC for easier list scanning ([68a599f](68a599fee0
)), closes [#418](https://code.castopod.org/adaures/castopod/issues/418)
110 lines
3.7 KiB
JSON
110 lines
3.7 KiB
JSON
{
|
|
"name": "castopod",
|
|
"version": "1.8.0",
|
|
"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 public/assets/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 --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.38",
|
|
"@amcharts/amcharts4-geodata": "^4.1.28",
|
|
"@codemirror/commands": "^6.3.3",
|
|
"@codemirror/lang-xml": "^6.0.2",
|
|
"@codemirror/language": "^6.10.0",
|
|
"@codemirror/state": "^6.4.0",
|
|
"@codemirror/view": "^6.23.0",
|
|
"@floating-ui/dom": "^1.5.3",
|
|
"@github/clipboard-copy-element": "^1.3.0",
|
|
"@github/hotkey": "^3.1.0",
|
|
"@github/markdown-toolbar-element": "^2.2.1",
|
|
"@github/relative-time-element": "^4.3.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.0",
|
|
"marked": "^11.1.0",
|
|
"wavesurfer.js": "^7.6.0",
|
|
"xml-formatter": "^3.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^18.4.3",
|
|
"@commitlint/config-conventional": "^18.4.3",
|
|
"@csstools/css-tokenizer": "^2.2.2",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/exec": "^6.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/gitlab": "^13.0.0",
|
|
"@tailwindcss/forms": "^0.5.7",
|
|
"@tailwindcss/typography": "^0.5.10",
|
|
"@types/leaflet": "^1.9.8",
|
|
"@typescript-eslint/eslint-plugin": "^6.16.0",
|
|
"@typescript-eslint/parser": "^6.16.0",
|
|
"all-contributors-cli": "^6.26.1",
|
|
"commitizen": "^4.3.0",
|
|
"cross-env": "^7.0.3",
|
|
"cssnano": "^6.0.2",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^8.10.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"husky": "^8.0.3",
|
|
"is-ci": "^3.0.1",
|
|
"lint-staged": "^15.2.0",
|
|
"postcss": "^8.4.32",
|
|
"postcss-import": "^15.1.0",
|
|
"postcss-nesting": "^12.0.2",
|
|
"postcss-preset-env": "^9.3.0",
|
|
"postcss-reporter": "^7.0.5",
|
|
"prettier": "2.8.8",
|
|
"prettier-plugin-organize-imports": "^3.2.4",
|
|
"semantic-release": "^22.0.12",
|
|
"stylelint": "^16.1.0",
|
|
"stylelint-config-standard": "^36.0.0",
|
|
"svgo": "^3.1.0",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.0.10",
|
|
"vite-plugin-pwa": "^0.17.4",
|
|
"workbox-build": "^7.0.0",
|
|
"workbox-core": "^7.0.0",
|
|
"workbox-routing": "^7.0.0",
|
|
"workbox-strategies": "^7.0.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"
|
|
}
|
|
}
|
|
}
|