-
Notifications
You must be signed in to change notification settings - Fork 359
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "@microsoft/mgt-react",
"version": "3.0.1",
"description": "Microsoft Graph Toolkit React wrapper class",
"author": "Microsoft",
"license": "MIT",
"module": "dist/es6/index.js",
"main": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"files": [
"dist",
"src"
],
"keywords": [
"react",
"microsoft graph toolkit",
"web components",
"mgt"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoftgraph/microsoft-graph-toolkit"
},
"bugs": {
"url": "https://github.com/microsoftgraph/microsoft-graph-toolkit/issues"
},
"scripts": {
"build": "npm run clean && npm run generate && tsc",
"clean": "node ./scripts/clean.js",
"compile:watch": "tsc -w",
"build:watch": "npm run compile:watch",
"postpack": "cpx *.tgz ../../artifacts",
"analyze": "custom-elements-manifest analyze --globs \"../*/src/**/*.ts\" --outdir temp",
"generate": "npm run analyze && node ./scripts/generate.js"
},
"sideEffects": false,
"dependencies": {
"@microsoft/mgt-components": "*",
"@microsoft/mgt-element": "*",
"@microsoft/microsoft-graph-types": "^2.0.0",
"@microsoft/microsoft-graph-types-beta": "^0.29.0-preview",
"react": "^17.0.1 || ^18.0.0",
"react-dom": "^17.0.1 || ^18.0.0",
"wc-react": "^0.5.0"
},
"publishConfig": {
"access": "public"
}
}