mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
110 lines
3.7 KiB
JSON
110 lines
3.7 KiB
JSON
{
|
|
"name": "castopod",
|
|
"version": "1.12.9",
|
|
"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.39",
|
|
"@amcharts/amcharts4-geodata": "^4.1.30",
|
|
"@codemirror/commands": "^6.6.2",
|
|
"@codemirror/lang-xml": "^6.1.0",
|
|
"@codemirror/language": "^6.10.3",
|
|
"@codemirror/state": "^6.4.1",
|
|
"@codemirror/view": "^6.33.0",
|
|
"@floating-ui/dom": "^1.6.11",
|
|
"@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.3",
|
|
"@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.2.0",
|
|
"marked": "^13.0.3",
|
|
"wavesurfer.js": "^7.8.6",
|
|
"xml-formatter": "^3.6.3"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^19.5.0",
|
|
"@commitlint/config-conventional": "^19.5.0",
|
|
"@csstools/css-tokenizer": "^3.0.1",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/exec": "^6.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/gitlab": "^13.2.1",
|
|
"@tailwindcss/forms": "^0.5.9",
|
|
"@tailwindcss/typography": "^0.5.15",
|
|
"@types/leaflet": "^1.9.12",
|
|
"@typescript-eslint/eslint-plugin": "^8.7.0",
|
|
"@typescript-eslint/parser": "^8.7.0",
|
|
"all-contributors-cli": "^6.26.1",
|
|
"commitizen": "^4.3.0",
|
|
"cross-env": "^7.0.3",
|
|
"cssnano": "^7.0.6",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.2.1",
|
|
"husky": "^9.1.6",
|
|
"is-ci": "^3.0.1",
|
|
"lint-staged": "^15.2.10",
|
|
"postcss": "^8.4.47",
|
|
"postcss-import": "^16.1.0",
|
|
"postcss-nesting": "^13.0.0",
|
|
"postcss-preset-env": "^10.0.5",
|
|
"postcss-reporter": "^7.1.0",
|
|
"prettier": "3.3.3",
|
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
"semantic-release": "^24.1.1",
|
|
"stylelint": "^16.9.0",
|
|
"stylelint-config-standard": "^36.0.1",
|
|
"svgo": "^3.3.2",
|
|
"tailwindcss": "^3.4.13",
|
|
"typescript": "~5.5.4",
|
|
"vite": "^5.4.7",
|
|
"vite-plugin-pwa": "^0.20.5",
|
|
"workbox-build": "^7.1.1",
|
|
"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"
|
|
}
|
|
}
|
|
}
|