mirror of
https://github.com/flarum/framework.git
synced 2025-01-10 04:53:53 +08:00
a595665bfb
With all the commits below, we resolve all outstanding typing issues in the repo, and CI jobs run green. * fix: Convert DashboardPage and DashboardWidget to TypeScript * fix: fix type errors in package manager ext * fix: Convert Post component to TypeScript * fix: avatar typings should accept null user * fix: convert Notification component to TypeScript * fix: properly use `typeof` in ForumApplication * feat: make Notification content attr generic * chore: format Notification component * fix: Convert DiscussionRenamedNotification to TypeScript * fix(pusher) move shims to a location where they get applied * fix(pusher): fix some typing errors * fix(akismet): fix some typing issues * chore: update core dist typings * chore(pusher): format * fix: anchorScroll should accept string selectors * fix: more accurately represent ApiQueryParamsPlural * fix: convert PostStreamState to TypeScript * chore(core): rebuild typings * feat: allow extending app.routes * fix: more flexible typings for highlight.ts * fix: use primitive `number` type for Discussion typings * fix: convert DiscussionListItem to TypeScript * chore: rebuild core typings * fix: final pusher type fixes * feat: start tags TypeScript conversion * fix: require-dev tags in pusher for CI TypeScript purposes. * chore(core): format * chore(tags): build dist typings * feat(pusher): use dist types from tags. * feat: convert flags to TypeScript * chore(flags): generate dist typings * fix(akismet): last type errors * chore: update .yarn-integrity * chore: partially run flarum-cli audit infra --fix The tsconfig changes from that command are ignored, since we don't yet support "replacable sections" that would let us add custom config. * chore: use type imports * fix: broader gitattributes * chore: run flarum-cli audit infra --monorepo --fix * feat: make `app.data` typings extensible * chore(core): format * chore: boost tags TypeScript coverage * fix(tags): further increase type coverage.
89 lines
2.4 KiB
JSON
89 lines
2.4 KiB
JSON
{
|
|
"name": "flarum/flags",
|
|
"description": "Allow users to flag posts for moderator review.",
|
|
"type": "flarum-extension",
|
|
"keywords": [
|
|
"moderation"
|
|
],
|
|
"license": "MIT",
|
|
"support": {
|
|
"issues": "https://github.com/flarum/core/issues",
|
|
"source": "https://github.com/flarum/flags",
|
|
"forum": "https://discuss.flarum.org"
|
|
},
|
|
"homepage": "https://flarum.org",
|
|
"funding": [
|
|
{
|
|
"type": "website",
|
|
"url": "https://flarum.org/donate/"
|
|
}
|
|
],
|
|
"require": {
|
|
"flarum/core": "^1.2"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Flarum\\Flags\\": "src/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-main": "1.x-dev"
|
|
},
|
|
"flarum-extension": {
|
|
"title": "Flags",
|
|
"category": "feature",
|
|
"icon": {
|
|
"name": "fas fa-flag",
|
|
"backgroundColor": "#D659B5",
|
|
"color": "#fff"
|
|
}
|
|
},
|
|
"flarum-cli": {
|
|
"modules": {
|
|
"admin": true,
|
|
"forum": true,
|
|
"js": true,
|
|
"jsCommon": false,
|
|
"css": true,
|
|
"gitConf": true,
|
|
"githubActions": true,
|
|
"prettier": true,
|
|
"typescript": true,
|
|
"bundlewatch": false,
|
|
"backendTesting": true,
|
|
"editorConfig": true,
|
|
"styleci": true
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": [
|
|
"@test:unit",
|
|
"@test:integration"
|
|
],
|
|
"test:unit": "phpunit -c tests/phpunit.unit.xml",
|
|
"test:integration": "phpunit -c tests/phpunit.integration.xml",
|
|
"test:setup": "@php tests/integration/setup.php"
|
|
},
|
|
"scripts-descriptions": {
|
|
"test": "Runs all tests.",
|
|
"test:unit": "Runs all unit tests.",
|
|
"test:integration": "Runs all integration tests.",
|
|
"test:setup": "Sets up a database for use with integration tests. Execute this only once."
|
|
},
|
|
"require-dev": {
|
|
"flarum/core": "*@dev",
|
|
"flarum/tags": "*@dev",
|
|
"flarum/testing": "^1.0.0"
|
|
},
|
|
"repositories": [
|
|
{
|
|
"type": "path",
|
|
"url": "../../*/*"
|
|
}
|
|
],
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|