This repository has been archived on 2024-05-13. You can view files and clone it, but cannot push or open issues or pull requests.
share2fedi/package.json

47 lines
1.2 KiB
JSON
Raw Normal View History

2020-09-23 10:08:21 -04:00
{
"name": "toot",
2023-06-17 08:16:00 -04:00
"version": "2.4.5",
2021-08-14 13:01:37 -04:00
"description": "Cross-instance share page for Mastodon",
"license": "AGPL-3.0-or-later",
2021-11-04 13:01:45 -04:00
"author": "Nikita Karamov <me@kytta.dev>",
"homepage": "https://toot.kytta.dev/",
2021-08-14 13:01:37 -04:00
"repository": {
2021-08-14 13:12:42 -04:00
"type": "git",
2023-03-16 05:41:55 -04:00
"url": "https://github.com/kytta/share2fedi.git"
2021-08-14 13:12:42 -04:00
},
2021-08-14 13:01:37 -04:00
"private": true,
2023-03-16 06:47:59 -04:00
"type": "module",
"scripts": {
2023-03-16 06:47:59 -04:00
"build": "vite build",
2022-11-14 07:31:48 -05:00
"build-icons": "svgo --multipass assets/pentagon.svg assets/s2f.svg assets/share2fedi.svg -o assets/pentagon.min.svg assets/s2f.min.svg assets/share2fedi.min.svg",
2023-03-16 06:47:59 -04:00
"dev": "vite",
2023-03-01 06:12:17 -05:00
"fmt": "prettier --write .",
"lint": "prettier --check . && eslint .",
2023-03-16 06:47:59 -04:00
"preview": "vite preview",
"test": "pnpm run lint"
},
"browserslist": "cover 95%, last 2 versions, Firefox ESR, not dead",
"devDependencies": {
2023-03-16 06:47:59 -04:00
"@vitejs/plugin-legacy": "^4.0.2",
2022-02-02 09:35:39 -05:00
"autoprefixer": "^10.4.2",
"browserslist": "^4.19.1",
2023-03-01 06:12:17 -05:00
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-unicorn": "^45.0.2",
2022-02-02 09:35:39 -05:00
"postcss": "^8.4.6",
"postcss-csso": "^6.0.0",
2023-03-01 06:12:17 -05:00
"prettier": "^2.8.4",
2022-02-02 09:35:39 -05:00
"sass": "^1.49.7",
2023-03-16 06:47:59 -04:00
"svgo": "^3.0.1",
"terser": "^5.16.6",
"vite": "^4.1.4"
},
"postcss": {
"map": true,
"plugins": {
"autoprefixer": {},
"postcss-csso": {}
}
}
2020-09-23 10:08:21 -04:00
}