Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

package.json 3.5 KB

You have to be logged in to leave a comment. Sign In
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  1. {
  2. "name": "chat-ui",
  3. "version": "0.9.2",
  4. "private": true,
  5. "packageManager": "npm@9.5.0",
  6. "scripts": {
  7. "dev": "vite dev",
  8. "build": "vite build",
  9. "preview": "vite preview",
  10. "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
  11. "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
  12. "lint": "prettier --plugin-search-dir . --check . && eslint .",
  13. "format": "prettier --plugin-search-dir . --write .",
  14. "test": "vitest",
  15. "updateLocalEnv": "node --loader ts-node/esm scripts/updateLocalEnv.ts",
  16. "populate": "vite-node --options.transformMode.ssr='/.*/' scripts/populate.ts",
  17. "prepare": "husky"
  18. },
  19. "devDependencies": {
  20. "@faker-js/faker": "^8.4.1",
  21. "@iconify-json/carbon": "^1.1.16",
  22. "@iconify-json/eos-icons": "^1.1.6",
  23. "@sveltejs/adapter-node": "^5.2.0",
  24. "@sveltejs/kit": "^2.5.20",
  25. "@tailwindcss/typography": "^0.5.9",
  26. "@types/dompurify": "^3.0.5",
  27. "@types/express": "^4.17.21",
  28. "@types/js-yaml": "^4.0.9",
  29. "@types/jsdom": "^21.1.1",
  30. "@types/jsonpath": "^0.2.4",
  31. "@types/minimist": "^1.2.5",
  32. "@types/node": "^22.1.0",
  33. "@types/parquetjs": "^0.10.3",
  34. "@types/sbd": "^1.0.5",
  35. "@types/uuid": "^9.0.8",
  36. "@typescript-eslint/eslint-plugin": "^6.x",
  37. "@typescript-eslint/parser": "^6.x",
  38. "dompurify": "^3.1.6",
  39. "eslint": "^8.28.0",
  40. "eslint-config-prettier": "^8.5.0",
  41. "eslint-plugin-svelte": "^2.30.0",
  42. "isomorphic-dompurify": "^2.13.0",
  43. "js-yaml": "^4.1.0",
  44. "minimist": "^1.2.8",
  45. "prettier": "^2.8.0",
  46. "prettier-plugin-svelte": "^2.10.1",
  47. "prettier-plugin-tailwindcss": "^0.2.7",
  48. "prom-client": "^15.1.2",
  49. "svelte": "^4.2.19",
  50. "svelte-check": "^3.8.5",
  51. "ts-node": "^10.9.1",
  52. "tslib": "^2.4.1",
  53. "typescript": "^5.0.0",
  54. "unplugin-icons": "^0.16.1",
  55. "vite": "^5.3.5",
  56. "vite-node": "^1.3.1",
  57. "vitest": "^0.31.0"
  58. },
  59. "type": "module",
  60. "dependencies": {
  61. "@aws-sdk/credential-providers": "^3.592.0",
  62. "@cliqz/adblocker-playwright": "^1.27.2",
  63. "@gradio/client": "^1.1.1",
  64. "@huggingface/hub": "^0.5.1",
  65. "@huggingface/inference": "^2.7.0",
  66. "@huggingface/transformers": "^3.0.0-alpha.6",
  67. "@iconify-json/bi": "^1.1.21",
  68. "@playwright/browser-chromium": "^1.43.1",
  69. "@resvg/resvg-js": "^2.6.2",
  70. "autoprefixer": "^10.4.14",
  71. "aws-sigv4-fetch": "^4.0.1",
  72. "aws4": "^1.13.0",
  73. "browser-image-resizer": "^2.4.1",
  74. "date-fns": "^2.29.3",
  75. "dotenv": "^16.0.3",
  76. "express": "^4.21.0",
  77. "file-type": "^19.4.1",
  78. "google-auth-library": "^9.13.0",
  79. "handlebars": "^4.7.8",
  80. "highlight.js": "^11.7.0",
  81. "husky": "^9.0.11",
  82. "image-size": "^1.0.2",
  83. "ip-address": "^9.0.5",
  84. "jose": "^5.3.0",
  85. "jsdom": "^22.0.0",
  86. "json5": "^2.2.3",
  87. "jsonpath": "^1.1.1",
  88. "lint-staged": "^15.2.7",
  89. "marked": "^12.0.1",
  90. "marked-katex-extension": "^5.0.1",
  91. "mongodb": "^5.8.0",
  92. "nanoid": "^4.0.2",
  93. "openid-client": "^5.4.2",
  94. "parquetjs": "^0.11.2",
  95. "pino": "^9.0.0",
  96. "pino-pretty": "^11.0.0",
  97. "playwright": "^1.44.1",
  98. "postcss": "^8.4.31",
  99. "saslprep": "^1.0.3",
  100. "satori": "^0.10.11",
  101. "satori-html": "^0.3.2",
  102. "sbd": "^1.0.19",
  103. "serpapi": "^1.1.1",
  104. "sharp": "^0.33.4",
  105. "tailwind-scrollbar": "^3.0.0",
  106. "tailwindcss": "^3.4.0",
  107. "uuid": "^10.0.0",
  108. "zod": "^3.22.3"
  109. },
  110. "optionalDependencies": {
  111. "@aws-sdk/client-bedrock-runtime": "^3.631.0",
  112. "@anthropic-ai/sdk": "^0.25.0",
  113. "@anthropic-ai/vertex-sdk": "^0.4.1",
  114. "@google-cloud/vertexai": "^1.1.0",
  115. "@google/generative-ai": "^0.14.1",
  116. "aws4fetch": "^1.0.17",
  117. "cohere-ai": "^7.9.0",
  118. "openai": "^4.44.0"
  119. }
  120. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...