ppanel-web/package.json
semantic-release-bot f275f01f25 🔖 chore(release): v1.0.0-beta.5 [skip ci]
# [1.0.0-beta.5](https://github.com/perfect-panel/ppanel-web/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2025-01-09)

###  Features

* **locales**: Replace 'nodeGroupId' with 'groupId' in multiple language files for consistency ([a4e9d5d](https://github.com/perfect-panel/ppanel-web/commit/a4e9d5d))
* **locales**: Update 'deductBalance' to 'giftAmount' across multiple languages and fix newline in announcement.json ([70497af](https://github.com/perfect-panel/ppanel-web/commit/70497af))
* **stats**: Replace dynamic stat fetching with environment constants for user, server, and location counts ([46ae166](https://github.com/perfect-panel/ppanel-web/commit/46ae166))
* **subscribe**: Update suffix from 'MB' to 'Mbps' and enhance speed limit display logic ([3547bb1](https://github.com/perfect-panel/ppanel-web/commit/3547bb1))
* **user**: Add 'gift_amount' field and update related references in user services and components ([b13c77e](https://github.com/perfect-panel/ppanel-web/commit/b13c77e))

### 🎫 Chores

* **deps**: Update package dependencies across multiple projects for improved stability and performance ([b01a5bc](https://github.com/perfect-panel/ppanel-web/commit/b01a5bc))
* **ui**: Update package dependencies for improved stability and performance ([25da429](https://github.com/perfect-panel/ppanel-web/commit/25da429))

### 🐛 Bug Fixes

* **api**: Replace 'deduction' with 'gift_amount' and add 'commission' field in type definitions ([77edf1d](https://github.com/perfect-panel/ppanel-web/commit/77edf1d))
* **api**: Update API type definitions to replace 'deduction' with 'gift_amount' and make 'commission' field optional ([c2af060](https://github.com/perfect-panel/ppanel-web/commit/c2af060))
* **auth**: Refactor user authentication forms to remove global store dependency and improve type handling ([12026b0](https://github.com/perfect-panel/ppanel-web/commit/12026b0))
* **coupon**: Rename 'server' field to 'subscribe' in coupon form and update coupon update request type ([f8b6d82](https://github.com/perfect-panel/ppanel-web/commit/f8b6d82))
* **types**: Add 'gift_amount' field to API type definitions ([8f8a12a](https://github.com/perfect-panel/ppanel-web/commit/8f8a12a))
* **user**: Add the 'gift_amount' field to the user service's type definition ([6301409](https://github.com/perfect-panel/ppanel-web/commit/6301409))
2025-01-09 14:42:36 +00:00

68 lines
1.8 KiB
JSON

{
"name": "ppanel-web",
"version": "1.0.0-beta.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": {
"@umijs/openapi": "^1.13.0",
"@workspace/commitlint-config": "workspace:*",
"@workspace/eslint-config": "workspace:*",
"@workspace/prettier-config": "workspace:*",
"@workspace/typescript-config": "workspace:*",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"semantic-release": "21.1.2",
"semantic-release-config-gitmoji": "^1.5.3",
"turbo": "^2.3.3",
"typescript": "^5.7.3"
},
"packageManager": "bun@1.1.43",
"engines": {
"node": ">=20"
}
}