ppanel-web/package.json
semantic-release-bot 35e1cef18e 🔖 chore(release): v1.5.0 [skip ci]
# [1.5.0](https://github.com/perfect-panel/ppanel-web/compare/v1.4.8...v1.5.0) (2025-09-28)

###  Features

* Update server configuration translations for multiple languages ([fc43de1](https://github.com/perfect-panel/ppanel-web/commit/fc43de1))

### 🐛 Bug Fixes

* Add DynamicMultiplier component for managing node multipliers and update ServersPage layout ([bb6671c](https://github.com/perfect-panel/ppanel-web/commit/bb6671c))
* Remove unnecessary blank lines in multiple index files for cleaner code structure ([6a823b8](https://github.com/perfect-panel/ppanel-web/commit/6a823b8))
* Remove unused ratio variable from server traffic log and server form for cleaner code ([55034dc](https://github.com/perfect-panel/ppanel-web/commit/55034dc))
* Update Badge variants and restructure traffic ratio display in ServersPage ([3d778e5](https://github.com/perfect-panel/ppanel-web/commit/3d778e5))
* Update minimum ratio value to 0 in protocol fields and adjust related schemas; enhance unit conversion in ServerConfig ([3b6ef17](https://github.com/perfect-panel/ppanel-web/commit/3b6ef17))
* Update protocol fields to use 'obfs' instead of 'security' and adjust related configurations ([4abdd36](https://github.com/perfect-panel/ppanel-web/commit/4abdd36))
2025-09-28 16:03:36 +00:00

69 lines
1.8 KiB
JSON

{
"name": "ppanel-web",
"version": "1.5.0",
"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"
}
}