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 2.6 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
  1. {
  2. "name": "chat-ui",
  3. "version": "0.7.0",
  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": "MONGODB_URL=mongodb://127.0.0.1:27017/ vitest",
  15. "updateLocalEnv": "node --loader ts-node/esm scripts/updateLocalEnv.ts",
  16. "updateProdEnv": "node --loader ts-node/esm scripts/updateProdEnv.ts",
  17. "populate": "vite-node --options.transformMode.ssr='/.*/' scripts/populate.ts"
  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": "^1.3.1",
  24. "@sveltejs/kit": "^1.30.4",
  25. "@tailwindcss/typography": "^0.5.9",
  26. "@types/jsdom": "^21.1.1",
  27. "@types/marked": "^4.0.8",
  28. "@types/minimist": "^1.2.5",
  29. "@types/parquetjs": "^0.10.3",
  30. "@types/uuid": "^9.0.8",
  31. "@typescript-eslint/eslint-plugin": "^6.x",
  32. "@typescript-eslint/parser": "^6.x",
  33. "eslint": "^8.28.0",
  34. "eslint-config-prettier": "^8.5.0",
  35. "eslint-plugin-svelte": "^2.30.0",
  36. "marked-katex-extension": "^3.0.6",
  37. "minimist": "^1.2.8",
  38. "prettier": "^2.8.0",
  39. "prettier-plugin-svelte": "^2.10.1",
  40. "prettier-plugin-tailwindcss": "^0.2.7",
  41. "svelte": "^4.2.8",
  42. "svelte-check": "^3.6.2",
  43. "ts-node": "^10.9.1",
  44. "tslib": "^2.4.1",
  45. "typescript": "^5.0.0",
  46. "unplugin-icons": "^0.16.1",
  47. "vite": "^4.5.2",
  48. "vite-node": "^1.3.1",
  49. "vitest": "^0.31.0"
  50. },
  51. "type": "module",
  52. "dependencies": {
  53. "@huggingface/hub": "^0.5.1",
  54. "@huggingface/inference": "^2.6.3",
  55. "@iconify-json/bi": "^1.1.21",
  56. "@resvg/resvg-js": "^2.6.0",
  57. "@xenova/transformers": "^2.6.0",
  58. "autoprefixer": "^10.4.14",
  59. "browser-image-resizer": "^2.4.1",
  60. "date-fns": "^2.29.3",
  61. "dotenv": "^16.0.3",
  62. "handlebars": "^4.7.8",
  63. "highlight.js": "^11.7.0",
  64. "image-size": "^1.0.2",
  65. "ip-address": "^9.0.5",
  66. "jsdom": "^22.0.0",
  67. "json5": "^2.2.3",
  68. "marked": "^4.3.0",
  69. "mongodb": "^5.8.0",
  70. "nanoid": "^4.0.2",
  71. "openid-client": "^5.4.2",
  72. "parquetjs": "^0.11.2",
  73. "postcss": "^8.4.31",
  74. "saslprep": "^1.0.3",
  75. "satori": "^0.10.11",
  76. "satori-html": "^0.3.2",
  77. "serpapi": "^1.1.1",
  78. "sharp": "^0.33.2",
  79. "tailwind-scrollbar": "^3.0.0",
  80. "tailwindcss": "^3.4.0",
  81. "uuid": "^9.0.1",
  82. "zod": "^3.22.3"
  83. },
  84. "optionalDependencies": {
  85. "@anthropic-ai/sdk": "^0.17.1",
  86. "aws4fetch": "^1.0.17",
  87. "openai": "^4.14.2",
  88. "@google-cloud/vertexai": "^0.5.0"
  89. }
  90. }
Tip!

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

Comments

Loading...