-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.87 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
{
"name": "@microsoft/teams.ts",
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/microsoft/teams.ts",
"bugs": "https://github.com/microsoft/teams.ts/issues",
"packageManager": "npm@11.12.1",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/teams.ts.git"
},
"workspaces": [
"packages/*",
"external/*",
"examples/*",
"test/integration"
],
"keywords": [
"microsoft",
"teams",
"msteams",
"copilot",
"ai",
"adaptive-cards",
"apps",
"bots"
],
"scripts": {
"check:lockfile-registry": "node scripts/check-lockfile-registry.js",
"version:stamp": "node scripts/version.js",
"version:get": "nbgv get-version -v NpmPackageVersion",
"clean": "npx turbo clean",
"build": "npx turbo build",
"build:packages": "npx turbo build --filter=./packages/*",
"build:essential": "npx turbo build --filter='./packages/*' --filter='!./packages/graph' --filter='!./packages/graph-endpoints' --filter='!./packages/graph-endpoints-beta' --filter='!./packages/graph-tools' --filter='!./external/*'",
"build:examples": "npx turbo build --filter=./examples/*",
"build:external": "npx turbo build --filter=./external/*",
"dev": "npx turbo dev",
"lint": "npx turbo lint --concurrency=100%",
"lint:fix": "npx turbo lint:fix --concurrency=100%",
"test": "npx turbo test --concurrency=100%"
},
"devDependencies": {
"@turbo/gen": "^2.5.7",
"nerdbank-gitversioning": "^3.9.50",
"turbo": "^2.9.14",
"typescript": "^5.4.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.62.3"
},
"overrides": {
"restify": {
"send": "^1.2.0",
"find-my-way": "^9.0.0"
},
"follow-redirects": "^1.16.0",
"router": {
"path-to-regexp": "^8.4.0"
},
"rollup": "4.62.3"
}
}