weavebot-core
Version:
Generic content processing framework for web scraping and AI extraction
81 lines (80 loc) • 1.97 kB
JSON
{
"name": "weavebot-core",
"version": "0.1.1",
"description": "Generic content processing framework for web scraping and AI extraction",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./schemas": {
"types": "./dist/schemas/index.d.ts",
"import": "./dist/schemas/index.mjs",
"require": "./dist/schemas/index.js"
},
"./processors": {
"types": "./dist/processors/index.d.ts",
"import": "./dist/processors/index.mjs",
"require": "./dist/processors/index.js"
},
"./storage": {
"types": "./dist/storage/index.d.ts",
"import": "./dist/storage/index.mjs",
"require": "./dist/storage/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.mjs",
"require": "./dist/utils/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/google": "^1.2.21",
"@types/cheerio": "^0.22.35",
"cheerio": "^1.1.0",
"date-fns": "^2.30.0",
"playwright": "^1.40.0",
"zod": "^3.22.4"
},
"peerDependencies": {
"@ai-sdk/openai": "^0.0.66",
"ai": "^3.4.32"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsup": "^8.0.0",
"typescript": "^5.3.2",
"vitest": "^1.0.0"
},
"files": [
"dist/**/*",
"README.md"
],
"keywords": [
"content-processing",
"ai",
"web-scraping",
"schema-validation",
"plugin-architecture",
"generic-framework",
"extraction"
],
"repository": {
"type": "git",
"url": "https://github.com/weavebot/library",
"directory": "packages/core"
},
"author": "WeaveBot Team",
"license": "MIT"
}