forum-oauth-center/js/package.json

30 lines
1.2 KiB
JSON
Raw Normal View History

2023-09-28 17:42:13 +08:00
{
2024-02-25 04:55:37 +08:00
"name": "@rhodes-island/flarum-oauth-center",
2023-09-28 17:42:13 +08:00
"private": true,
"version": "0.0.0",
"devDependencies": {
2024-02-25 04:55:37 +08:00
"@babel/core": "^7.14.6",
"@types/mithril": "^2.0.11",
"babel-loader": "^8.2.2",
2023-09-28 17:42:13 +08:00
"flarum-tsconfig": "^1.0.2",
2024-02-25 04:55:37 +08:00
"flarum-webpack-config": "^2.0.2",
"moment": "^2.29.1",
"ts-loader": "8.1.0",
2023-09-28 17:42:13 +08:00
"typescript": "^4.5.4",
2024-02-25 04:55:37 +08:00
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
2023-09-28 17:42:13 +08:00
},
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"analyze": "cross-env ANALYZER=true npm run build",
"format": "prettier --write src",
"format-check": "prettier --check src",
"clean-typings": "npx rimraf dist-typings && mkdir dist-typings",
"build-typings": "npm run clean-typings && ([ -e src/@types ] && cp -r src/@types dist-typings/@types || true) && tsc && npm run post-build-typings",
"post-build-typings": "find dist-typings -type f -name '*.d.ts' -print0 | xargs -0 sed -i 's,../src/@types,@types,g'",
"check-typings": "tsc --noEmit --emitDeclarationOnly false",
"check-typings-coverage": "typescript-coverage-report"
2024-02-25 04:55:37 +08:00
}
2023-09-28 17:42:13 +08:00
}