## [1.4.7](https://github.com/perfect-panel/ppanel-web/compare/v1.4.6...v1.4.7) (2025-09-23) ### 🐛 Bug Fixes * Add unique key to ProTable for improved rendering with user ID filters ([2bff15f](https://github.com/perfect-panel/ppanel-web/commit/2bff15f)) * Adjust layout spacing and chart aspect ratio in ServerConfig component ([05a61d8](https://github.com/perfect-panel/ppanel-web/commit/05a61d8)) * Refactor server ID cell rendering for improved readability and consistency ([0345b7c](https://github.com/perfect-panel/ppanel-web/commit/0345b7c)) * Update announcement page to format creation date and enhance content display ([8445e30](https://github.com/perfect-panel/ppanel-web/commit/8445e30)) * Update OnlineUsersCell to display user count with icon instead of badge ([7a4ebdf](https://github.com/perfect-panel/ppanel-web/commit/7a4ebdf)) * Update subscribe name fallback to return '--' instead of 'Unknown' ([0a07d25](https://github.com/perfect-panel/ppanel-web/commit/0a07d25))
69 lines
1.8 KiB
JSON
69 lines
1.8 KiB
JSON
{
|
|
"name": "ppanel-web",
|
|
"version": "1.4.7",
|
|
"private": true,
|
|
"homepage": "https://github.com/perfect-panel/ppanel-web",
|
|
"bugs": {
|
|
"url": "https://github.com/perfect-panel/ppanel-web/issues/new"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/perfect-panel/ppanel-web.git"
|
|
},
|
|
"license": "GUN",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "turbo build",
|
|
"clean": "./scripts/clean.sh",
|
|
"dev": "turbo dev",
|
|
"lint": "turbo lint",
|
|
"locale": "turbo locale && bun prettier",
|
|
"openapi": "turbo openapi && bun prettier",
|
|
"prepare": "./scripts/prepare.sh",
|
|
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,cjs,mjs,md,json}\"",
|
|
"release": "semantic-release",
|
|
"update:deps": "./scripts/update-deps.sh",
|
|
"update:shadcn": "./scripts/update-shadcn-ui.sh && bun prettier"
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@workspace/commitlint-config"
|
|
]
|
|
},
|
|
"lint-staged": {
|
|
"*.{json,md}": [
|
|
"prettier --write --no-error-on-unmatched-pattern"
|
|
],
|
|
"*.{js,jsx,cjs,mjs}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
],
|
|
"*.{ts,tsx}": [
|
|
"prettier --parser=typescript --write",
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"prettier": "@workspace/prettier-config",
|
|
"devDependencies": {
|
|
"@netlify/plugin-nextjs": "^5.12.1",
|
|
"@umijs/openapi": "^1.13.15",
|
|
"@workspace/commitlint-config": "workspace:*",
|
|
"@workspace/eslint-config": "workspace:*",
|
|
"@workspace/prettier-config": "workspace:*",
|
|
"@workspace/typescript-config": "workspace:*",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.1.5",
|
|
"semantic-release": "21.1.2",
|
|
"semantic-release-config-gitmoji": "^1.5.3",
|
|
"turbo": "^2.5.6",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"packageManager": "bun@1.1.43",
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|