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

78 lines
2.2 KiB
JSON
Raw Normal View History

2020-09-23 16:08:21 +02:00
{
2023-03-16 15:20:56 +01:00
"name": "share2fedi",
2023-06-17 14:16:00 +02:00
"version": "2.4.5",
2023-03-16 19:06:57 +01:00
"description": "Instance-agnostic share page for the Fediverse.",
2021-08-14 19:01:37 +02:00
"license": "AGPL-3.0-or-later",
2021-11-04 18:01:45 +01:00
"author": "Nikita Karamov <me@kytta.dev>",
2023-03-16 15:20:56 +01:00
"homepage": "https://s2f.kytta.dev/",
2021-08-14 19:01:37 +02:00
"repository": {
2021-08-14 19:12:42 +02:00
"type": "git",
2023-03-16 10:41:55 +01:00
"url": "https://github.com/kytta/share2fedi.git"
2021-08-14 19:12:42 +02:00
},
2021-08-14 19:01:37 +02:00
"private": true,
2023-03-16 11:47:59 +01:00
"type": "module",
"scripts": {
2023-08-30 12:19:28 +02:00
"dev": "astro dev",
"start": "astro dev",
2023-08-26 15:23:09 +02:00
"build": "astro build",
"build:icons": "bash ./script/build-icons",
2023-03-17 21:08:08 +01:00
"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",
2023-03-17 21:08:08 +01:00
"dependencies": {
2023-08-26 15:10:16 +02:00
"@astrojs/cloudflare": "^6.8.1",
2023-08-26 15:27:20 +02:00
"@astrojs/deno": "^4.3.0",
2023-08-26 15:10:16 +02:00
"@astrojs/netlify": "^2.6.0",
"@astrojs/node": "^5.3.6",
"@astrojs/vercel": "^3.8.2",
2023-08-26 15:21:13 +02:00
"@nanostores/persistent": "^0.9.1",
2023-08-26 15:10:16 +02:00
"astro": "^2.10.14",
2023-08-26 15:21:13 +02:00
"nanostores": "^0.9.3"
2023-03-17 21:08:08 +01:00
},
"devDependencies": {
2023-08-26 15:21:13 +02:00
"@types/node": "^18.17.11",
2023-08-26 15:15:56 +02:00
"@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",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
2023-08-26 15:15:56 +02:00
"prettier": "^3.0.2",
"prettier-plugin-astro": "^0.12.0",
2023-08-26 15:21:13 +02:00
"sass": "^1.66.1",
"sharp": "^0.32.5",
2023-08-26 15:24:31 +02:00
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^10.0.0",
2023-03-18 02:02:20 +01:00
"svgo": "^3.0.2",
2023-08-26 15:37:02 +02:00
"typescript": "^5.0.2",
"vite-plugin-lightningcss": "^0.0.5"
2023-03-16 14:44:21 +01:00
},
"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"
},
2023-03-17 14:06:30 +01:00
"prettier": {
"proseWrap": "always",
"singleAttributePerLine": true
},
2023-03-16 14:44:21 +01:00
"stylelint": {
"extends": "stylelint-config-standard-scss"
}
2020-09-23 16:08:21 +02:00
}