forked from microsoft/teams-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 835 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 835 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
28
29
30
31
32
33
34
35
{
"name": "teams-ai",
"private": true,
"scripts": {
"clean": "npx turbo clean",
"build": "npx turbo build",
"build:packages": "npx turbo build --filter=./packages/*",
"dev": "npx turbo dev",
"lint": "npx turbo lint",
"lint:fix": "npx turbo lint:fix",
"test": "npx turbo test --concurrency=100%",
"fmt": "npx prettier --write \"**/*.{js,ts,tsx,md,json}\"",
"docs:build": "npm -w teams-md run build",
"docs:dev": "npm -w teams-md run start",
"docs:serve": "npm -w teams-md run serve"
},
"devDependencies": {
"prettier": "^3.5.3",
"turbo": "^2.5.0",
"typescript": "5.8.2"
},
"engines": {
"node": ">=20"
},
"packageManager": "npm@10.9.2",
"workspaces": [
"packages/*",
"teams.md"
],
"tsconfig": {
"exclude": [
"node_modules"
]
}
}