fediwall/package.json

47 lines
1.4 KiB
JSON
Raw Normal View History

2023-07-14 01:10:29 +02:00
{
"name": "fediwall",
"version": "1.0.0",
"description": "Display a wall of recent mastodon posts",
"homepage": "https://github.com/defnull/fediwall#readme",
"bugs": "https://github.com/defnull/fediwall/issues",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Marcel Hellkamp",
"url": "https://defnull.de/"
2023-07-14 01:10:29 +02:00
},
"private": true,
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "vite build",
2023-07-25 09:49:32 +02:00
"check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint ./src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
2023-07-14 01:10:29 +02:00
},
"dependencies": {
"@vueuse/core": "^10.2.1",
"bootstrap": "^5.3.0",
"moment": "^2.29.4",
"vue": "^3.3.4",
"vue-dompurify-html": "^4.1.4",
"vue-masonry": "^0.16.0"
},
"devDependencies": {
2023-07-25 09:49:32 +02:00
"@rushstack/eslint-patch": "^1.2.0",
2023-07-14 01:10:29 +02:00
"@tsconfig/node18": "^2.0.1",
"@types/node": "^18.16.17",
2023-07-25 09:49:32 +02:00
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitejs/plugin-legacy": "^4.1.0",
2023-07-14 01:10:29 +02:00
"@vitejs/plugin-vue": "^4.2.3",
"@vue/tsconfig": "^0.4.0",
2023-07-25 09:49:32 +02:00
"@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.15.1",
"git-describe": "^4.1.1",
2023-07-14 01:10:29 +02:00
"typescript": "~5.0.4",
"vite": "^4.3.9",
"vite-plugin-compression": "^0.5.1",
"vue-tsc": "^1.6.5"
}
}