forked from microsoft-foundry/foundry-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 821 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 821 Bytes
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
{
"name": "foundry-samples-quickstart",
"version": "1.0.0",
"description": "JavaScript AI Foundry Quickstart",
"homepage": "https://github.com/azure-ai-foundry/foundry-samples#readme",
"bugs": {
"url": "https://github.com/azure-ai-foundry/foundry-samples/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azure-ai-foundry/foundry-samples.git"
},
"license": "MIT",
"author": "Dan Wahlin, Julia Muiruri",
"type": "module",
"main": "src/quickstart.js",
"scripts": {
"start": "node src/quickstart.js"
},
"dependencies": {
"@azure/ai-agents": "^1.0.0-alpha.20250505.3",
"@azure/ai-projects": "^1.0.0-alpha.20250505.4",
"@azure/identity": "^4.9.1",
"@azure/opentelemetry-instrumentation-azure-sdk": "^1.0.0-beta.8",
"dotenv": "^16.5.0"
}
}