toot-script-condivisione-su.../package.json

62 lines
1.7 KiB
JSON

{
"name": "share2fedi",
"version": "2.4.5",
"description": "Instance-agnostic share page for the Fediverse.",
"license": "AGPL-3.0-or-later",
"author": "Nikita Karamov <me@kytta.dev>",
"homepage": "https://s2f.kytta.dev/",
"repository": {
"type": "git",
"url": "https://github.com/kytta/share2fedi.git"
},
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev --host 127.0.0.1",
"start": "astro dev --host 127.0.0.1",
"build": "astro build",
"preview": "astro preview",
"lint": "prettier --write --plugin=prettier-plugin-astro . && eslint --fix . && stylelint --fix '**/*.scss' && tsc --noEmit",
"test": "astro check && pnpm run lint"
},
"browserslist": "cover 95%, last 2 versions, Firefox ESR, not dead",
"dependencies": {
"@astrojs/cloudflare": "^6.8.1",
"@astrojs/deno": "^4.3.0",
"@astrojs/netlify": "^2.6.0",
"@astrojs/node": "^5.3.6",
"@astrojs/vercel": "^3.8.2",
"@nanostores/persistent": "^0.9.1",
"astro": "^2.10.14",
"nanostores": "^0.9.3"
},
"devDependencies": {
"@types/node": "^18.17.11",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-unicorn": "^48.0.1",
"prettier": "^3.0.2",
"prettier-plugin-astro": "^0.12.0",
"sass": "^1.66.1",
"sharp": "^0.32.5",
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^10.0.0",
"svgo": "^3.0.2",
"typescript": "^5.0.2",
"vite-plugin-lightningcss": "^0.0.5"
},
"prettier": {
"printWidth": 80,
"quoteProps": "as-needed",
"trailingComma": "all",
"proseWrap": "always",
"singleAttributePerLine": true
},
"stylelint": {
"extends": "stylelint-config-standard-scss"
}
}