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

82 lines
2.3 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",
2024-02-07 14:51:44 +01:00
"prepare": "husky"
},
"browserslist": "cover 95%, last 2 versions, Firefox ESR, not dead",
2023-03-17 21:08:08 +01:00
"dependencies": {
2024-04-04 19:16:39 +02:00
"@astrojs/cloudflare": "^9.2.1",
2023-10-08 15:40:55 +02:00
"@astrojs/deno": "^5.0.1",
2024-04-04 19:16:39 +02:00
"@astrojs/netlify": "^5.2.0",
"@astrojs/node": "^8.2.5",
"@astrojs/vercel": "^7.5.2",
2023-08-26 15:21:13 +02:00
"@nanostores/persistent": "^0.9.1",
2024-04-04 19:16:39 +02:00
"astro": "^4.5.16",
2024-02-07 14:41:30 +01:00
"nanostores": "^0.9.5"
2023-03-17 21:08:08 +01:00
},
"devDependencies": {
2024-04-04 19:16:39 +02:00
"@astrojs/check": "^0.5.10",
"@types/node": "^18.19.29",
2024-02-07 14:41:30 +01:00
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
2024-04-04 19:16:39 +02:00
"browserslist": "^4.23.0",
"eslint": "^8.57.0",
2024-02-07 14:41:30 +01:00
"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",
2024-04-04 19:16:39 +02:00
"husky": "^9.0.11",
"lightningcss": "^1.24.1",
2024-02-07 14:52:38 +01:00
"lint-staged": "^15.2.2",
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-04-04 19:16:39 +02:00
"sass": "^1.74.1",
"sharp": "^0.33.3",
"stylelint": "^16.3.1",
"stylelint-config-standard-scss": "^13.1.0",
2024-02-07 14:41:30 +01:00
"svgo": "^3.2.0",
2024-04-04 19:16:39 +02:00
"typescript": "^5.4.3"
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"
2024-02-07 14:56:06 +01:00
},
"engines": {
"node": "^18.17.0 || >= 20.3.0"
}
2020-09-23 16:08:21 +02:00
}