79 lines
2.3 KiB
JSON
79 lines
2.3 KiB
JSON
{
|
|
"name": "share2fedi",
|
|
"version": "2.4.5",
|
|
"description": "Instance-agnostic share page for the Fediverse.",
|
|
"license": "AGPL-3.0-only",
|
|
"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",
|
|
"start": "astro dev",
|
|
"build": "astro build",
|
|
"build:icons": "bash ./script/build-icons",
|
|
"preview": "astro preview",
|
|
"check": "pnpm run /^check:/",
|
|
"check:astro": "astro check",
|
|
"check:eslint": "eslint .",
|
|
"check:prettier": "prettier --check --plugin=prettier-plugin-astro .",
|
|
"check:stylelint": "stylelint **/*.scss",
|
|
"check:typescript": "tsc --noEmit",
|
|
"fix": "pnpm fix:prettier . && pnpm fix:eslint .",
|
|
"fix:eslint": "eslint --fix",
|
|
"fix:prettier": "prettier --write --ignore-unknown --plugin=prettier-plugin-astro",
|
|
"fix:stylelint": "stylelint --fix",
|
|
"test": "pnpm run check",
|
|
"prepare": "husky install"
|
|
},
|
|
"browserslist": "cover 95%, last 2 versions, Firefox ESR, not dead",
|
|
"dependencies": {
|
|
"@astrojs/cloudflare": "^7.0.1",
|
|
"@astrojs/deno": "^5.0.0",
|
|
"@astrojs/netlify": "^3.0.1",
|
|
"@astrojs/node": "^6.0.0",
|
|
"@astrojs/vercel": "^4.0.3",
|
|
"@nanostores/persistent": "^0.9.1",
|
|
"astro": "^3.0.7",
|
|
"nanostores": "^0.9.3"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/check": "^0.2.0",
|
|
"@types/node": "^18.17.14",
|
|
"@typescript-eslint/eslint-plugin": "^6.5.0",
|
|
"@typescript-eslint/parser": "^6.5.0",
|
|
"eslint": "^8.48.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-astro": "^0.29.0",
|
|
"eslint-plugin-unicorn": "^48.0.1",
|
|
"husky": "^8.0.0",
|
|
"lint-staged": "^14.0.1",
|
|
"prettier": "^3.0.3",
|
|
"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.2.2",
|
|
"vite-plugin-lightningcss": "^0.0.5"
|
|
},
|
|
"lint-staged": {
|
|
"*": "pnpm run fix:prettier",
|
|
"*.{astro,js,ts}": "pnpm run fix:eslint",
|
|
"*.scss": "pnpm run fix:stylelint",
|
|
"assets/*.{png,svg}": "pnpm run build:icons"
|
|
},
|
|
"prettier": {
|
|
"proseWrap": "always",
|
|
"singleAttributePerLine": true
|
|
},
|
|
"stylelint": {
|
|
"extends": "stylelint-config-standard-scss"
|
|
}
|
|
}
|