-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "sibyl",
"version": "0.1.0",
"description": "Give your AI Agent the web, without the bloat — extensible and lightweight by design 🕷️",
"type": "module",
"packageManager": "pnpm@11.5.1",
"main": "dist/cli.js",
"bin": {
"sibyl": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"lint:code": "eslint --max-warnings 0 src/**/*.ts",
"lint:style": "prettier --check .",
"lint": "pnpm lint:code && pnpm lint:style",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "prettier --write",
"*.{json,css,scss,md,yml,yaml,html}": "prettier --write"
},
"engines": {
"node": ">=22"
},
"keywords": [
"ai",
"search",
"ai-agent",
"fetch",
"crawl"
],
"author": {
"name": "POST/APSIS",
"email": "dev@postapsis.com",
"url": "https://postapsis.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"@types/turndown": "^5.0.6",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.6",
"prettier": "3.8.3",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.8"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.85",
"@ai-sdk/openai": "^3.0.72",
"@openrouter/ai-sdk-provider": "^2.9.1",
"ai": "^6.0.207",
"cheerio": "^1.2.0",
"defuddle": "^0.18.1",
"linkedom": "^0.18.12",
"ollama-ai-provider-v2": "^3.6.0",
"turndown": "^7.2.4"
}
}