microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Samples/Samples.Tab/Web/package.json
29lines · modecode
| 1 | { |
| 2 | "name": "tab", |
| 3 | "license": "MIT", |
| 4 | "private": true, |
| 5 | "main": "bin/index", |
| 6 | "types": "bin/index", |
| 7 | "files": [ |
| 8 | "bin", |
| 9 | "README.md" |
| 10 | ], |
| 11 | "scripts": { |
| 12 | "clean": "npx rimraf ./bin", |
| 13 | "build": "npx vite build" |
| 14 | }, |
| 15 | "dependencies": { |
| 16 | "@microsoft/teams.client": "2.0.0-preview.11", |
| 17 | "@microsoft/teams.common": "2.0.0-preview.11", |
| 18 | "@microsoft/teams.graph": "2.0.0-preview.11", |
| 19 | "@microsoft/teams.graph-endpoints": "2.0.0-preview.11", |
| 20 | "react": "^19.0.0", |
| 21 | "react-dom": "^19.0.0" |
| 22 | }, |
| 23 | "devDependencies": { |
| 24 | "@vitejs/plugin-react": "^4.3.4", |
| 25 | "rimraf": "^6.0.1", |
| 26 | "typescript": "^5.4.5", |
| 27 | "vite": "^6.3.6" |
| 28 | } |
| 29 | } |
| 30 | |