mirror of
https://github.com/langgenius/dify.git
synced 2026-05-10 14:14:17 +08:00
Add vite-plus toolchain, shared ESLint config via @antfu/eslint-config, tsgo type-check, pre-commit staged hooks, and CI lint/type-check steps for the @langgenius/dify-ui package. Made-with: Cursor
37 lines
838 B
JSON
37 lines
838 B
JSON
{
|
|
"name": "@langgenius/dify-ui",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
"./styles.css": "./src/styles/styles.css",
|
|
"./tailwind-preset": {
|
|
"types": "./src/tailwind-preset.ts",
|
|
"import": "./src/tailwind-preset.ts"
|
|
},
|
|
"./cn": {
|
|
"types": "./src/cn.ts",
|
|
"import": "./src/cn.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"check": "vp check --fix",
|
|
"lint": "eslint",
|
|
"lint:fix": "eslint --fix",
|
|
"type-check": "tsgo --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"clsx": "catalog:",
|
|
"tailwind-merge": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "catalog:",
|
|
"@typescript/native-preview": "catalog:",
|
|
"eslint": "catalog:",
|
|
"tailwindcss": "catalog:",
|
|
"typescript": "catalog:",
|
|
"vite": "catalog:",
|
|
"vite-plus": "catalog:"
|
|
}
|
|
}
|