-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
77 lines (77 loc) · 2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "openai-secure-ui-js",
"version": "1.0.0",
"description": "Reusable OpenAI secure UI and infrastructure for AI Chat with Azure",
"private": true,
"scripts": {
"start": "npm run start --workspace=@azure/ai-chat-components",
"start:webapp": "npm run dev --workspace=webapp-html",
"start:api": "npm run start --workspace=api",
"build": "npm run build -ws --if-present",
"build:wc": "npm run build --workspace=@azure/ai-chat-components",
"clean": "npm run clean -ws --if-present",
"lint": "xo packages/api",
"lint:fix": "xo packages/api --fix",
"format": "prettier --list-different --write .",
"format:check": "prettier --list-different ."
},
"repository": {
"type": "git",
"url": "https://github.com/Azure-Samples/openai-secure-js.git"
},
"homepage": "https://github.com/Azure-Samples/openai-secure-js",
"bugs": {
"url": "https://github.com/Azure-Samples/openai-secure-js/issues"
},
"keywords": [
"azure",
"azure-functions",
"azure-static-web-apps",
"chatbot",
"serverless",
"typescript",
"secure",
"web-components",
"openai",
"ui"
],
"author": "Microsoft",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@azure/static-web-apps-cli": "^2.0.1",
"concurrently": "^9.0.1",
"ollamazure": "^1.4.0",
"prettier": "^3.0.3",
"rimraf": "^6.0.1",
"typescript": "^5.3.3",
"xo": "^0.60.0"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true
},
"xo": {
"space": true,
"prettier": true,
"envs": [
"node"
],
"rules": {
"@typescript-eslint/triple-slash-reference": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"import/no-unassigned-import": "off"
}
}
}