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

39 lines
947 B
JSON
Raw Normal View History

2020-09-23 10:08:21 -04:00
{
"name": "toot",
2022-11-20 10:19:14 -05:00
"version": "2.4.1",
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",
2022-02-12 06:35:53 -05:00
"url": "https://codeberg.org/kytta/toot.git"
2021-08-14 13:12:42 -04:00
},
2021-08-14 13:01:37 -04:00
"private": true,
"scripts": {
"build": "gulp",
2021-01-30 08:46:24 -05:00
"dev": "gulp watch",
2023-03-01 06:12:17 -05:00
"fmt": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test": "pnpm run lint",
2021-08-29 07:13:27 -04:00
"serve": "sirv ./public --dev"
},
"devDependencies": {
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",
"gulp": "^4.0.2",
2022-02-02 09:35:39 -05:00
"gulp-postcss": "^9.0.1",
"gulp-sass": "^5.1.0",
2021-08-14 12:49:32 -04:00
"gulp-sourcemaps": "^3.0.0",
2022-02-02 09:35:39 -05:00
"gulp-terser": "^2.1.0",
"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",
"sirv-cli": "^2.0.2"
}
2020-09-23 10:08:21 -04:00
}