2018-06-20 13:35:38 +09:30
|
|
|
{
|
2022-01-20 03:48:49 -05:00
|
|
|
"private": true,
|
|
|
|
"name": "@flarum/pusher",
|
|
|
|
"prettier": "@flarum/prettier-config",
|
|
|
|
"scripts": {
|
|
|
|
"dev": "webpack --mode development --watch",
|
|
|
|
"build": "webpack --mode production",
|
|
|
|
"analyze": "cross-env ANALYZER=true yarn build",
|
|
|
|
"format": "prettier --write src",
|
|
|
|
"format-check": "prettier --check src",
|
|
|
|
"clean-typings": "npx rimraf dist-typings && mkdir dist-typings",
|
2022-01-20 04:25:36 -05:00
|
|
|
"build-typings": "npm run clean-typings && tsc && [ -e src/@types ] && cp -r src/@types dist-typings/@types",
|
2022-01-20 03:48:49 -05:00
|
|
|
"check-typings": "tsc --noEmit --emitDeclarationOnly false",
|
|
|
|
"check-typings-coverage": "typescript-coverage-report"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@flarum/prettier-config": "^1.0.0",
|
2022-01-27 16:40:49 -05:00
|
|
|
"@types/pusher-js": "^5.1.0",
|
2022-01-20 03:48:49 -05:00
|
|
|
"flarum-tsconfig": "^1.0.2",
|
|
|
|
"flarum-webpack-config": "^2.0.0",
|
2022-01-27 16:40:49 -05:00
|
|
|
"prettier": "^2.5.1",
|
2022-01-20 03:48:49 -05:00
|
|
|
"typescript": "^4.5.4",
|
2022-01-27 16:40:49 -05:00
|
|
|
"typescript-coverage-report": "^0.6.1",
|
|
|
|
"webpack": "^5.65.0",
|
|
|
|
"webpack-cli": "^4.9.1"
|
2022-01-20 03:48:49 -05:00
|
|
|
}
|
2018-06-20 13:35:38 +09:30
|
|
|
}
|