mirror of
https://github.com/langgenius/dify.git
synced 2026-09-05 00:31:19 +08:00
30 lines
628 B
JSON
30 lines
628 B
JSON
{
|
|
"name": "@knowledge/parsers",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@knowledge/core": "workspace:*",
|
|
"csv-parse": "^6.2.1",
|
|
"fast-xml-parser": "^5.8.0",
|
|
"fflate": "^0.8.3",
|
|
"htmlparser2": "^12.0.0",
|
|
"marked": "^18.0.3",
|
|
"yaml": "^2.9.0",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.2",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^2.1.8"
|
|
}
|
|
}
|