-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.42 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.42 KB
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
{
"name": "agents-for-js",
"version": "0.1.0",
"homepage": "https://github.com/microsoft/Agents-for-js",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/Agents-for-js.git"
},
"author": {
"name": "Microsoft",
"email": "agentssdk@microsoft.com",
"url": "https://aka.ms/Agents"
},
"description": "Microsoft 365 Agents SDK for JavaScript",
"keywords": [
"Agents"
],
"private": true,
"type": "module",
"scripts": {
"play": "agentsplayground",
"lint": "eslint",
"lint:deps": "knip",
"lint:deps:ci": "knip --reporter github-actions",
"compat": "node compat.mjs",
"test": "node --test --test-reporter=spec --import tsx --test-reporter-destination=stdout --test-reporter=junit --test-reporter-destination=test-report.xml './packages/*/test/**/*.test.ts'",
"docs": "typedoc --skipErrorChecking",
"clean:dist": "rm -rfv packages/*/dist",
"clean": "git clean -xdf",
"build:samples": "tsc --build --verbose tsconfig.samples.json",
"build:browser": "npm run build:browser --workspaces --if-present",
"build:esm": "npm run build:esm --workspaces --if-present",
"build": "tsc --build --verbose tsconfig.build.json",
"build:clean": "npm run clean:dist && npm run build",
"postbuild": "npm run build:esm && npm run build:browser"
},
"license": "MIT",
"workspaces": [
"packages/*",
"test-agents/*",
"!test-agents/otelAgent"
],
"devDependencies": {
"@microsoft/api-extractor": "7.58.2",
"@microsoft/m365agentsplayground": "0.2.23",
"@microsoft/microsoft-graph-types": "2.43.1",
"@types/debug": "4.1.12",
"@types/express": "5.0.6",
"@types/node": "25.5.0",
"@types/sinon": "21.0.0",
"@types/uuid": "10.0.0",
"esbuild": "0.27.3",
"eslint": "9.39.2",
"knip": "5.86.0",
"neostandard": "0.13.0",
"nerdbank-gitversioning": "3.9.50",
"npm-run-all": "4.1.5",
"sinon": "21.0.3",
"tsx": "4.21.0",
"typedoc": "0.28.18",
"typescript": "5.9.3"
},
"peerDependencies": {
"@rushstack/terminal": "*"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"adaptivecards-templating": {
"adaptive-expressions": {
"fast-xml-parser": "5.5.7"
}
}
},
"overridesComments": {
"adaptivecards-templating/adaptive-expressions/fast-xml-parser": "Override to 5.5.7 because adaptive-expressions pulls vulnerable 4.5.3 (test-agents/web-chat)"
}
}