-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"name": "llms-forge",
"version": "1.0.0",
"description": "llm.energy - Extract documentation for AI agents from any site with llms.txt support",
"private": false,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"docs:install": "pip install -r docs-site/requirements.txt",
"docs:dev": "cd docs-site && mkdocs serve",
"docs:build": "cd docs-site && mkdocs build && rm -rf ../public/docs && cp -r site ../public/docs"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.0.0",
"@types/js-yaml": "^4.0.9",
"@types/react-syntax-highlighter": "^15.5.13",
"clsx": "^2.1.0",
"framer-motion": "^11.0.0",
"js-yaml": "^4.1.1",
"jszip": "^3.10.1",
"lucide-react": "^0.400.0",
"nanoid": "^5.0.0",
"next": "^14.2.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"tailwind-merge": "^2.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^20.14.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.0",
"jsdom": "^27.4.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vitest": "^4.0.17"
}
}