-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
84 lines (84 loc) · 2.53 KB
/
package.json
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
75
76
77
78
79
80
81
82
83
84
{
"name": "ai-hero",
"version": "1.0.0",
"packageManager": "[email protected]",
"main": "index.js",
"author": "Matt Pocock <[email protected]>",
"license": "GPL",
"dependencies": {
"@ai-sdk/anthropic": "^1.0.6",
"@ai-sdk/deepseek": "^0.1.6",
"@ai-sdk/openai": "^1.1.0",
"@ai-sdk/openai-compatible": "^0.0.13",
"@ai-sdk/react": "^1.1.15",
"@clack/prompts": "0.10.0",
"@hono/node-server": "^1.13.7",
"@modelcontextprotocol/sdk": "^1.6.1",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.11",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/turndown": "^5.0.5",
"ai": "^4.1.9",
"autoevals": "^0.0.111",
"cheerio": "^1.0.0",
"dedent": "^1.5.3",
"dotenv": "^16.4.7",
"evalite": "0.8.0",
"express": "^4.21.2",
"hono": "^4.6.17",
"lucide-react": "^0.474.0",
"openid-client": "^6.1.7",
"pg": "^8.13.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"robots-parser": "^3.0.1",
"turndown": "^7.2.0",
"unstorage": "^1.13.1",
"vitest": "^2.0.0",
"zod": "^3.24.1"
},
"scripts": {
"lint": "tsc --project ./examples/tsconfig.json && eslint",
"reorder": "tsx internal/reorder-examples.ts && pnpm run lint",
"all-examples": "evalite watch examples",
"embed-datasets": "tsx --env-file=.env internal/create-embeddings-from-dataset.ts",
"example": "tsx internal/run-example.ts",
"get-token": "tsx internal/get-ai-hero-token.ts",
"gitkeep": "tsx internal/add-gitkeeps.ts",
"log": "tsx --env-file=.env internal/run-input-log.ts",
"shortlinks:update": "tsx internal/shortlinks/update.ts",
"shortlinks:lint": "tsx internal/shortlinks/lint.ts",
"shortlinks:generate": "tsx --env-file=.env internal/shortlinks/generate.ts",
"shortlinks:sync": "tsx internal/shortlinks/sync-with-ai-hero.ts",
"prepare": "husky"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@eslint/markdown": "^6.2.1",
"@tailwindcss/postcss": "^4.0.6",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"chokidar": "^4.0.3",
"commander": "^13.0.0",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"next": "15.1.7",
"postcss": "^8",
"prettier": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.11"
},
"prettier": {
"printWidth": 55
}
}