-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.23 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.23 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
{
"name": "@microsoft/agent365-monorepo",
"version": "0.0.0-placeholder",
"description": "Microsoft Agent 365 SDK monorepo for AI agents built with TypeScript/Node.js",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"build:watch": "npm run build:watch --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present && rimraf node_modules",
"test": "npm run test --workspaces --if-present -- --testPathIgnorePatterns=/integration/",
"test:coverage": "node --experimental-vm-modules ./node_modules/.bin/jest --config=tests/jest.config.cjs --coverage",
"test:watch": "npm run test:watch --workspaces --if-present",
"test:integration": "node --experimental-vm-modules ./node_modules/.bin/jest --config jest.integration.config.cjs",
"test:integration:watch": "node --experimental-vm-modules ./node_modules/.bin/jest --config jest.integration.config.cjs --watch",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"ci": "npm run ci --workspaces --if-present",
"pack": "npm run pack --workspaces --if-present",
"version": "node setVersion.js",
"version:local": "node setVersion.js --local",
"version:check": "node setVersion.js --dry-run"
},
"workspaces": [
"packages/agents-a365-*",
"tests-agent/*",
"tests"
],
"keywords": [
"ai",
"agents",
"azure",
"typescript",
"microsoft-365"
],
"author": "Microsoft Corporation",
"license": "See license file",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/Agent365.git",
"directory": "nodejs"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.20.0",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"nerdbank-gitversioning": "^3.9.50",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
},
"dependencies": {
"globals": "^16.5.0",
"jiti": "^2.6.1"
},
"pnpm": {
"overrides": {
"@types/uuid": "^9.0.8",
"hono": "^4.11.7",
"uuid": "^10.0.0",
"zod": "^4.1.12"
}
}
}