mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-24 10:40:07 +08:00
- Added a new Textarea component for user input. - Configured ESLint with custom rules and global ignores. - Developed a comprehensive API client with CRUD operations and error handling. - Defined catalog types and schemas using Zod for type safety. - Created utility functions for class name merging and validation. - Established Next.js configuration for API rewrites and static file headers. - Set up package.json with necessary dependencies and scripts. - Configured PostCSS for Tailwind CSS integration. - Added SVG assets for UI components. - Configured TypeScript with strict settings and module resolution.
55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"name": "@cherrystudio/catalog",
|
|
"version": "0.0.1-alpha.1",
|
|
"description": "All Model Catalog",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"packageManager": "yarn@4.9.1",
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"dev": "tsc -w",
|
|
"clean": "rm -rf dist",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"author": "Cherry Studio",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/CherryHQ/cherry-studio.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/CherryHQ/cherry-studio/issues"
|
|
},
|
|
"homepage": "https://github.com/CherryHQ/cherry-studio#readme",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"react-native": "./dist/index.js",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/json-schema": "^7.0.15",
|
|
"tsdown": "^0.16.6",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.13",
|
|
"zod": "^4.1.12"
|
|
},
|
|
"peerDependencies": {
|
|
"zod": "^4.1.12"
|
|
},
|
|
"dependencies": {
|
|
"json-schema": "^0.4.0"
|
|
},
|
|
"workspaces": [
|
|
"web"
|
|
]
|
|
}
|