castopod/package.json

122 lines
4.0 KiB
JSON

{
"name": "castopod",
"version": "2.0.0-next.3",
"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 .",
"format": "prettier --write .",
"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.8.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.11.3",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.1",
"@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.2.0",
"wavesurfer.js": "^7.10.1",
"xml-formatter": "^3.6.6"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@csstools/css-tokenizer": "^3.0.4",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/gitlab": "^13.2.8",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@types/leaflet": "^1.9.20",
"all-contributors-cli": "^6.26.1",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"cross-env": "^10.0.0",
"cssnano": "^7.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"glob": "^11.0.3",
"globals": "^16.3.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lint-staged": "^16.1.5",
"postcss": "^8.5.6",
"postcss-import": "^16.1.1",
"postcss-nesting": "^13.0.2",
"postcss-preset-env": "^10.3.0",
"postcss-reporter": "^7.1.0",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"semantic-release": "^24.2.7",
"sharp": "^0.34.3",
"stylelint": "^16.23.1",
"stylelint-config-standard": "^39.0.0",
"svgo": "^4.0.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.9.2",
"typescript-eslint": "^8.41.0",
"vite": "^7.1.3",
"vite-plugin-codeigniter": "^2.0.0",
"vite-plugin-inspect": "^11.3.3",
"vite-plugin-pwa": "^1.0.3",
"vite-plugin-static-copy": "^3.1.2",
"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"
}
}
}