-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 2.01 KB
/
package.json
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
{
"name": "@vectara/create-ui",
"version": "2.0.1",
"engines": {
"node": ">=18"
},
"description": "The fastest way to generate a Vectara-powered sample codebase for a range of user interfaces",
"main": "index.js",
"bin": {
"@vectara/create-ui": "bin/index.mjs"
},
"scripts": {
"plop": "plop",
"docs": "node docs/docsServer.js",
"buildDocs": "node docs/build.js",
"buildDemos": "node docs/buildDemos.js",
"dev:chat": "cd apps/chat && cp ../../sampleConfigurations/chat-configuration.ts ./src/configuration.ts && npm install && npm run start",
"dev:search": "cd apps/search && cp ../../sampleConfigurations/search-configuration.ts ./src/configuration.ts && npm install && npm run start",
"dev:searchSummary": "cd apps/searchSummary && cp ../../sampleConfigurations/searchSummary-configuration.ts ./src/configuration.ts && npm install && npm run start",
"dev:qa": "cd apps/questionAndAnswer && cp ../../sampleConfigurations/questionAndAnswer-configuration.ts ./src/configuration.ts && npm install && npm run start"
},
"author": {
"name": "Vectara, Inc.",
"url": "https://www.vectara.com"
},
"license": "Apache-2.0",
"homepage": "https://github.com/vectara/create-ui",
"repository": {
"type": "git",
"url": "https://github.com/vectara/create-ui"
},
"keywords": [
"vectara",
"search",
"semantic",
"genAI",
"ai",
"summarization",
"codegen"
],
"dependencies": {
"minimist": "^1.2.8",
"plop": "^4.0.0"
},
"devDependencies": {
"@types/prismjs": "^1.26.3",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"chokidar": "^3.5.3",
"classnames": "^2.3.2",
"esbuild": "^0.19.9",
"esbuild-css-modules-plugin": "^3.1.0",
"esbuild-sass-plugin": "^2.16.0",
"live-server": "^1.2.2",
"markdown-to-jsx": "^7.3.2",
"prismjs": "^1.29.0",
"react-focus-on": "^3.9.1",
"react-icons": "^4.12.0",
"react-router-dom": "^6.8.2",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}