mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 03:30:25 -05:00
## [1.1.1](https://github.com/perfect-panel/ppanel-web/compare/v1.1.0...v1.1.1) (2025-07-20) ### 🐛 Bug Fixes * **node-table**: Update translations for headers and no data display ([eec0b12](https://github.com/perfect-panel/ppanel-web/commit/eec0b12)) * **rules**: Change rule type from 'auto' to 'default' and update ([3e290d7](https://github.com/perfect-panel/ppanel-web/commit/3e290d7)) * **rules**: Update rule settings ([3304a55](https://github.com/perfect-panel/ppanel-web/commit/3304a55)) * **subscribe-form**: Optimize discount calculation logic and debounce updates ([166e48f](https://github.com/perfect-panel/ppanel-web/commit/166e48f)) * **tutorial**: Comment out unused getVersion function and simplify getVersionPath ([7cdc6bd](https://github.com/perfect-panel/ppanel-web/commit/7cdc6bd)) * **tutorial**: Return latest version in case of fetch error ([1fb305e](https://github.com/perfect-panel/ppanel-web/commit/1fb305e))
68 lines
1.8 KiB
JSON
68 lines
1.8 KiB
JSON
{
|
|
"name": "ppanel-web",
|
|
"version": "1.1.1",
|
|
"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"
|
|
}
|
|
}
|