Files
kevisual-center/package.json
abearxiong 09f5f06baa feat: add environment variable management page with import/export functionality
- Implemented EnvPage component for managing environment variables.
- Added functionality to load, add, remove, and update environment variables.
- Included validation for empty and duplicate keys.
- Implemented import/export features for environment variables in JSON format.
- Integrated autocompletion for environment variable keys based on predefined config.

feat: create user profile management with edit and password change modals

- Developed ProfileCard component to display user information.
- Added EditProfileModal for updating user details.
- Implemented ChangePasswordModal for password modification.
- Integrated user data fetching and state management using Zustand.

feat: establish user store for managing user state and actions

- Created user store with Zustand for managing user profile state.
- Added actions for updating user information and handling loading states.

feat: implement login store for user authentication

- Developed login store for managing login state and actions.
- Added functionality for user login and registration with error handling.

feat: create reusable UI components for input groups and comboboxes

- Developed InputGroup and related components for enhanced input handling.
- Created Combobox component for improved selection functionality.
- Added Badge component for displaying contextual information.
2026-02-02 23:30:08 +08:00

66 lines
1.9 KiB
JSON

{
"name": "@kevisual/center",
"version": "0.1.0",
"basename": "/root/center",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"pub": "ev deploy ./dist -k center -v 0.1.0 -u -y y",
"ui": "pnpm dlx shadcn@latest add "
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@base-ui/react": "^1.1.0",
"@kevisual/api": "^0.0.41",
"@kevisual/cache": "^0.0.5",
"@kevisual/query": "^0.0.39",
"@kevisual/router": "^0.0.66",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-table": "^8.21.3",
"antd": "^6.2.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^4.1.0",
"dayjs": "^1.11.19",
"dotenv": "^17.2.3",
"es-toolkit": "^1.44.0",
"idb-keyval": "^6.2.2",
"lucide-react": "^0.563.0",
"marked": "^17.0.1",
"next": "16.1.6",
"react": "19.2.4",
"react-day-picker": "^9.13.0",
"react-dom": "19.2.4",
"react-hook-form": "^7.71.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"valtio": "^2.3.0",
"vaul": "^1.1.2",
"zustand": "^5.0.11"
},
"devDependencies": {
"@kevisual/context": "^0.0.4",
"@kevisual/types": "^0.0.12",
"@kevisual/use-config": "^1.0.30",
"@tailwindcss/postcss": "^4",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}