framework/extensions/package-manager/js/package.json

30 lines
1.2 KiB
JSON
Raw Normal View History

2021-09-02 00:20:06 +08:00
{
2021-10-21 17:52:51 +08:00
"name": "@flarum/package-manager",
2021-09-02 00:20:06 +08:00
"version": "0.0.0",
"private": true,
"prettier": "@flarum/prettier-config",
"devDependencies": {
2022-01-24 13:37:14 +08:00
"prettier": "^2.5.1",
"flarum-webpack-config": "^2.0.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"@flarum/prettier-config": "^1.0.0",
"flarum-tsconfig": "^1.0.2",
"typescript": "^4.5.4",
"typescript-coverage-report": "^0.6.1"
2021-09-02 00:20:06 +08:00
},
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"format": "prettier --write src",
2022-01-24 13:37:14 +08:00
"format-check": "prettier --check src",
"ci": "yarn install --immutable --immutable-cache",
"analyze": "cross-env ANALYZER=true yarn run build",
"clean-typings": "npx rimraf dist-typings && mkdir dist-typings",
2022-03-12 07:02:51 +08:00
"build-typings": "yarn run clean-typings && [ -e src/@types ] && cp -r src/@types dist-typings/@types && tsc && yarn run post-build-typings",
2022-01-24 13:37:14 +08:00
"check-typings": "tsc --noEmit --emitDeclarationOnly false",
2022-03-12 07:02:51 +08:00
"check-typings-coverage": "typescript-coverage-report",
"post-build-typings": "find dist-typings -type f -name '*.d.ts' -print0 | xargs -0 sed -i 's,../src/@types,@types,g'"
2021-09-02 00:20:06 +08:00
}
}