-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.08 KB
/
package.json
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
{
"name": "teams-sdk-js",
"version": "0.1.6",
"private": true,
"homepage": "https://github.com/aacebo/teams-sdk-js",
"bugs": "https://github.com/aacebo/teams-sdk-js/issues",
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/aacebo/teams-sdk-js.git"
},
"workspaces": [
"apps/*",
"packages/*",
"samples/*"
],
"keywords": [
"microsoft",
"teams",
"msteams",
"copilot",
"ai",
"adaptive-cards",
"apps",
"bots"
],
"scripts": {
"clean": "npx turbo clean",
"build": "npx turbo build",
"dev": "npx turbo dev",
"lint": "npx turbo lint",
"test": "npx turbo test",
"fmt": "npx prettier --write \"**/*.{js,ts,tsx,md,json}\"",
"publish-packages": "npm run build && npx changeset version && npx changeset publish",
"docs:build": "mdbook build book",
"docs:serve": "mdbook serve book"
},
"devDependencies": {
"@changesets/cli": "latest",
"prettier": "^3.2.5",
"turbo": "latest",
"typescript": "^5.4.5"
}
}