dify/packages/dify-ui/package.json
yyh 0c4f1c6c1f
build(dify-ui): add package infra (eslint, tsgo, vp check, staged, CI)
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
2026-04-16 16:06:34 +08:00

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:"
}
}