## [1.3.0](https://github.com/perfect-panel/frontend/compare/v1.2.4...v1.3.0) (2025-12-29) ### ✨ Features / 新功能 * Add original price display option and enhance inventory messages in subscription components ([543a7b9](543a7b9eb9)) * Added localized support for user subscription and deletion status, and optimized the subscription form and user interface. ([9f95cec](9f95cec876)) * Added reset and pause subscription functionality, and updated the status display. ([bc451ee](bc451eea16)) * Added the option to restore subscription, and updated the relevant description and confirmation information. ([5f5c339](5f5c33987e)) * Enhance DatePicker component with clear button and improved value handling ([b27b928](b27b9287be)) * Refactor SubscriptionForm layout for improved readability and maintainability ([f432ba0](f432ba06f9)) * Update API proxy target to use environment variable for improved configurability ([8d514df](8d514dfd8f)) * Update queryKey structure in Purchase and Renewal components for improved order creation ([9559e00](9559e003b7)) * Update Vite configuration to load environment variables for improved API proxy setup ([d36a2c9](d36a2c902b)) ### 🐛 Bug Fixes / 问题修复 * Replace tag removal icon with a button for better accessibility and event handling ([3751f64](3751f64f73)) * Uncomment navigation to dashboard for authenticated users ([4d15b2b](4d15b2b6fc)) ### 📚 Documentation / 文档更新 * Update default administrator account information and security recommendations in installation guides ([7279275](7279275532))
95 lines
2.5 KiB
JSON
95 lines
2.5 KiB
JSON
{
|
|
"name": "frontend",
|
|
"version": "1.3.0",
|
|
"private": true,
|
|
"homepage": "https://github.com/perfect-panel/frontend",
|
|
"bugs": {
|
|
"url": "https://github.com/perfect-panel/frontend/issues/new"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/perfect-panel/frontend.git"
|
|
},
|
|
"license": "GUN",
|
|
"scripts": {
|
|
"build": "turbo build",
|
|
"dev": "turbo dev",
|
|
"docs:dev": "turbo docs:dev",
|
|
"docs:build": "turbo docs:build",
|
|
"lint": "turbo lint",
|
|
"check": "turbo check",
|
|
"test": "turbo test",
|
|
"openapi": "turbo openapi",
|
|
"i18n:extract": "turbo i18n:extract",
|
|
"i18n:sync": "turbo i18n:sync",
|
|
"i18n:status": "turbo i18n:status",
|
|
"prepare": "husky && npx gitmoji -i",
|
|
"release": "semantic-release"
|
|
},
|
|
"overrides": {
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"@types/react": "^19.2.0",
|
|
"@types/react-dom": "^19.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.3.6",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/exec": "^7.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/github": "^11.0.3",
|
|
"@types/react-copy-to-clipboard": "^5.0.7",
|
|
"@workspace/typescript-config": "workspace:*",
|
|
"commitlint": "^20.1.0",
|
|
"commitlint-config-gitmoji": "^2.3.1",
|
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
"gitmoji-cli": "^9.7.0",
|
|
"husky": "^9.1.7",
|
|
"i18next-cli": "^1.24.20",
|
|
"lefthook": "^2.0.4",
|
|
"lint-staged": "^16.2.7",
|
|
"semantic-release": "^24.2.5",
|
|
"turbo": "^2.5.8",
|
|
"typescript": "^5.9.3",
|
|
"ultracite": "^6.3.4"
|
|
},
|
|
"packageManager": "bun@1.3.1",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*",
|
|
"docs"
|
|
],
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
|
|
"bun x ultracite fix"
|
|
]
|
|
},
|
|
"gitmoji": {
|
|
"autoAdd": false,
|
|
"emojiFormat": "emoji",
|
|
"scopePrompt": false,
|
|
"messagePrompt": false,
|
|
"capitalizeTitle": false,
|
|
"gitmojisUrl": "https://gitmoji.dev/api/gitmojis"
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"gitmoji"
|
|
],
|
|
"parserPreset": {
|
|
"parserOpts": {
|
|
"headerPattern": "^(?:(\\u00a9|\\u00ae|[\\u2000-\\u3300]|\\ud83c[\\ud000-\\udfff]|\\ud83d[\\ud000-\\udfff]|\\ud83e[\\ud000-\\udfff])\\s*)?(\\w*)(?:\\((.*)\\))?!?:\\s*(.*)$",
|
|
"headerCorrespondence": [
|
|
"emoji",
|
|
"type",
|
|
"scope",
|
|
"subject"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|