-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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
{
"name": "azure-openai-rag-workshop-java",
"version": "1.0.0",
"description": "Create your own ChatGPT with Retrieval-Augmented-Generation",
"private": true,
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "npm run dev --workspace=frontend",
"build": "npm run build -ws --if-present",
"clean": "npm run clean -ws --if-present",
"format": "prettier --list-different --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/Azure-Samples/azure-openai-rag-workshop-java.git"
},
"homepage": "https://github.com/Azure-Samples/azure-openai-rag-workshop-java",
"bugs": {
"url": "https://github.com/Azure-Samples/azure-openai-rag-workshop-java/issues"
},
"keywords": [],
"author": "Microsoft",
"license": "MIT",
"workspaces": [
"src/frontend"
],
"devDependencies": {
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"typescript": "*"
},
"engines": {
"node": ">=20",
"npm": ">=9"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true,
"overrides": [
{
"files": [
"*.json"
],
"options": {
"parser": "json"
}
}
]
}
}