-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.87 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
{
"name": "canvasanvil",
"private": true,
"version": "2.0.0",
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 8001",
"dev:full": "concurrently -k -n APP,PPTIST -c cyan,magenta \"npm:dev:web\" \"npm --prefix pptist-lab run dev\"",
"dev:web": "vite --host 0.0.0.0 --port 8001",
"dev:api": "tsx watch api/server.ts",
"start": "tsx api/server.ts",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview --host 0.0.0.0 --port 8001",
"check": "tsc -b --noEmit"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.19",
"@ai-sdk/react": "^2.0.107",
"@jvmr/pptx-to-html": "^1.0.0",
"@langfuse/client": "^4.6.0",
"@langfuse/tracing": "^4.6.0",
"@opentelemetry/api": "^1.9.0",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"ai": "^5.0.89",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"express": "^5.2.1",
"framer-motion": "^12.28.1",
"js-tiktoken": "^1.0.21",
"lucide-react": "^0.511.0",
"mammoth": "^1.11.0",
"motion": "^12.28.1",
"openai": "^6.16.0",
"pako": "^2.1.0",
"pdf-lib": "^1.17.1",
"pptxgenjs": "^4.0.1",
"prism-react-renderer": "^2.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-drawio": "^1.0.7",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.4.1",
"react-resizable-panels-v3": "npm:react-resizable-panels@^3.0.6",
"react-router-dom": "^7.3.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.161.0",
"tsx": "^4.21.0",
"unpdf": "^1.4.0",
"zod": "^4.3.6",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@tailwindcss/typography": "^0.5.19",
"@types/express": "^5.0.6",
"@types/node": "^22.15.30",
"@types/pako": "^2.0.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.182.0",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.23",
"concurrently": "^9.2.1",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"http-proxy-middleware": "^3.0.5",
"postcss": "^8.5.6",
"sass-embedded": "^1.99.0",
"tailwindcss": "^3.4.19",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4"
}
}