-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.72 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"publishConfig": {
"access": "public"
},
"name": "@microsoft/msgraph-sdk-core",
"version": "1.0.0-preview.8",
"description": "Core functionalities for the Microsoft Graph JavaScript SDK",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"prepare": "husky",
"build": "npm run prettier:check && npm run clean && npm run build:compile",
"build:compile": "npm run compile",
"build:watch": "npm run compile:watch",
"clean": "shx rm -rf ./dist && shx rm -rf ./tsconfig.tsbuildinfo",
"compile": "tsc -b",
"compile:watch": "tsc -w",
"test": "vitest run",
"test:watch": "vitest",
"test:benchmark": "vitest bench",
"test:coverage": "npm run test -- --coverage",
"test:ui": "vitest --ui",
"lint": "eslint --quiet \"src/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"prettier:base": "prettier --parser typescript",
"prettier:check": "npm run prettier:base -- --check \"src/**/*.{ts,tsx}\"",
"prettier:fix": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoftgraph/msgraph-sdk-typescript-core.git"
},
"keywords": [
"Microsoft",
"Graph",
"msgraph",
"SDK",
"client",
"API",
"core"
],
"author": "Microsoft <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoftgraph/msgraph-sdk-typescript-core/issues"
},
"homepage": "https://github.com/microsoftgraph/msgraph-sdk-typescript-core#readme",
"devDependencies": {
"@microsoft/eslint-config-msgraph": "^4.1.1",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54",
"@typescript-eslint/parser": "^8.0.0-alpha.54",
"@vitest/coverage-v8": "^2.0.1",
"@vitest/ui": "^2.0.1",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"shx": "^0.3.4",
"typescript": "^5.3.3",
"vitest": "^2.0.1"
},
"dependencies": {
"@microsoft/kiota-abstractions": "^1.0.0-preview.39",
"@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.38",
"@microsoft/kiota-serialization-form": "^1.0.0-preview.28",
"@microsoft/kiota-serialization-json": "^1.0.0-preview.39",
"@microsoft/kiota-serialization-multipart": "^1.0.0-preview.18",
"@microsoft/kiota-serialization-text": "^1.0.0-preview.36",
"guid-typescript": "^1.0.9",
"tslib": "^2.6.2"
}
}