mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 03:30:25 -05:00
## [1.4.5](https://github.com/perfect-panel/ppanel-web/compare/v1.4.4...v1.4.5) (2025-09-17) ### ♻ Code Refactoring * Replace useQuery with Zustand store for subscription and node data management ([c6dd0b6](https://github.com/perfect-panel/ppanel-web/commit/c6dd0b6)) * Simplify TemplatePreview component structure by consolidating Sheet and Button elements ([1b715c5](https://github.com/perfect-panel/ppanel-web/commit/1b715c5)) ### 🐛 Bug Fixes * Add showLineNumbers prop handling in MonacoEditor for improved placeholder positioning ([bd67ece](https://github.com/perfect-panel/ppanel-web/commit/bd67ece)) * Add fetchTags method to NodesPage and ensure tags are fetched alongside nodes ([a3c5e31](https://github.com/perfect-panel/ppanel-web/commit/a3c5e31)) * Add NEXT_PUBLIC_HIDDEN_TUTORIAL_DOCUMENT to control tutorial visibility and update page query accordingly ([e94405d](https://github.com/perfect-panel/ppanel-web/commit/e94405d)) * Add subscribeSchema for subscription management with detailed proxy and user information ([49b3dcc](https://github.com/perfect-panel/ppanel-web/commit/49b3dcc)) * Enhance server ID display in ServerTrafficLogPage with badges and server ratio ([6dfac27](https://github.com/perfect-panel/ppanel-web/commit/6dfac27)) * Update platform handling in Content component to ensure available platforms are correctly filtered and displayed ([1dde708](https://github.com/perfect-panel/ppanel-web/commit/1dde708))
69 lines
1.8 KiB
JSON
69 lines
1.8 KiB
JSON
{
|
|
"name": "ppanel-web",
|
|
"version": "1.4.5",
|
|
"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"
|
|
}
|
|
}
|