repod/package.json

51 lines
1.6 KiB
JSON
Raw Normal View History

2023-06-22 18:10:30 +00:00
{
"name": "repod",
"description": "🔊 Browse, manage and listen to podcasts",
2024-03-16 18:26:05 +00:00
"version": "2.2.0",
2023-06-22 18:10:30 +00:00
"bugs": {
2024-01-30 22:09:43 +00:00
"url": "https://git.crystalyx.net/Xefir/repod/issues"
2023-06-22 18:10:30 +00:00
},
"license": "agpl",
"private": true,
"scripts": {
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"serve": "webpack --node-env development serve --progress",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix"
},
"dependencies": {
2024-05-03 16:39:07 +00:00
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^5.3.1",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.0.1",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^8.11.2",
2023-07-02 14:56:58 +00:00
"vue": "^2",
"vue-material-design-icons": "^5.3.0",
2023-07-07 16:38:53 +00:00
"vue-router": "^3",
"vuex": "^3"
2023-06-22 18:10:30 +00:00
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
2024-01-11 08:02:35 +00:00
"engines": {
"node": "^20.0.0",
"npm": "^9.0.0"
},
"prettier": "@nextcloud/prettier-config",
2023-06-22 18:10:30 +00:00
"devDependencies": {
"@nextcloud/babel-config": "^1.1.1",
"@nextcloud/browserslist-config": "^3.0.1",
2023-12-23 15:58:13 +00:00
"@nextcloud/eslint-config": "^8.3.0",
"@nextcloud/prettier-config": "^1.1.0",
"@nextcloud/stylelint-config": "^3.0.0",
"@nextcloud/webpack-vue-config": "^6.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3"
2023-06-22 18:10:30 +00:00
}
}