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",
2024-02-12 20:35:19 +01:00
"version": "3.1.0",
2023-03-16 19:06:57 +01:00
"description": "Instance-agnostic share page for the Fediverse.",
2023-09-02 16:17:15 +02:00
"license": "AGPL-3.0-only",
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": {
2024-02-07 14:41:30 +01:00
"@astrojs/cloudflare": "^7.7.1",
2023-10-08 15:40:55 +02:00
"@astrojs/deno": "^5.0.1",
2024-02-07 14:41:30 +01:00
"@astrojs/netlify": "^3.1.1",
"@astrojs/node": "^6.1.0",
"@astrojs/vercel": "^5.2.0",
2023-08-26 15:21:13 +02:00
"@nanostores/persistent": "^0.9.1",
2024-02-07 14:41:30 +01:00
"astro": "^3.6.4",
"nanostores": "^0.9.5"
2023-03-17 21:08:08 +01:00
},
"devDependencies": {
2024-02-07 14:45:08 +01:00
"@astrojs/check": "^0.4.1",
2024-02-07 14:41:30 +01:00
"@types/node": "^18.19.14",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
2024-02-07 14:45:08 +01:00
"eslint-plugin-astro": "^0.31.4",
2024-02-07 14:48:52 +01:00
"eslint-plugin-unicorn": "^51.0.1",
2023-10-08 15:44:58 +02:00
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
2024-02-07 14:41:30 +01:00
"prettier": "^3.2.5",
2024-02-07 14:45:08 +01:00
"prettier-plugin-astro": "^0.13.0",
2024-02-07 14:41:30 +01:00
"sass": "^1.70.0",
2023-10-08 15:40:55 +02:00
"sharp": "^0.32.6",
2024-02-07 14:47:45 +01:00
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
2024-02-07 14:41:30 +01:00
"svgo": "^3.2.0",
"typescript": "^5.3.3",
2023-08-26 15:37:02 +02:00
"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": {
"singleAttributePerLine": true
},
2023-03-16 14:44:21 +01:00
"stylelint": {
"extends": "stylelint-config-standard-scss"
}
2020-09-23 16:08:21 +02:00
}