-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.71 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "codeautopsy",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"prepare": "husky",
"postbuild": "next-sitemap"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.65",
"@google/generative-ai": "^0.24.1",
"@icons-pack/react-simple-icons": "^13.13.0",
"@lemonsqueezy/lemonsqueezy.js": "^4.0.0",
"@supabase/ssr": "^0.10.2",
"@supabase/supabase-js": "^2.105.1",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"@vercel/analytics": "^2.0.1",
"@xyflow/react": "^12.10.2",
"0xtrace": "^1.1.1",
"ai": "^6.0.191",
"codeautopsy-cli": "^1.0.2",
"d3-force": "^3.0.0",
"d3-hierarchy": "^3.1.2",
"dagre": "^0.8.5",
"framer-motion": "^12.38.0",
"groq-sdk": "^1.1.2",
"jszip": "^3.10.1",
"lucide-react": "^1.7.0",
"mermaid": "^11.14.0",
"next": "16.2.2",
"next-sitemap": "^4.2.3",
"openai": "^6.40.0",
"razorpay": "^2.9.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"react-zoom-pan-pinch": "^4.0.3",
"reactflow": "^11.11.4",
"remark-gfm": "^4.0.1",
"strip-comments": "^2.0.1",
"swr": "^2.4.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@babel/parser": "^7.29.7",
"@babel/types": "^7.29.7",
"@tailwindcss/postcss": "^4",
"@types/d3-force": "^3.0.10",
"@types/d3-hierarchy": "^3.1.7",
"@types/dagre": "^0.7.54",
"@types/jest": "^30.0.0",
"@types/jszip": "^3.4.0",
"@types/node": "^20",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/strip-comments": "^2.0.4",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"puppeteer": "^25.1.0",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"description": "<div align=\"center\"> <img src=\"./public/codeautopsy-logo1.png\" alt=\"CodeAutopsy Logo\" width=\"80\" height=\"80\" /> <h1>CodeAutopsy</h1> <p><b>An AI-powered diagnostic engine that reverse-engineers, maps, and analyzes complex codebases in seconds.</b></p>",
"main": "index.js",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sidhant0707/codeautopsy.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sidhant0707/codeautopsy/issues"
},
"homepage": "https://github.com/Sidhant0707/codeautopsy#readme",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}