-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "@microsoft/kiota-serialization-text",
"version": "1.0.0-preview.82",
"description": "Implementation of Kiota Serialization interfaces for text",
"main": "dist/es/src/index.js",
"browser": {
"./dist/es/src/index.js": "./dist/es/src/browser/index.js",
"./dist/es/src/textParseNodeFactory.js": "./dist/es/src/browser/textParseNodeFactory.js"
},
"module": "dist/es/src/index.js",
"types": "dist/es/src/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run build:esm",
"build:esm": "tsc && tsc-alias",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rimraf -rf ./dist",
"test:browser": "vitest run --browser.name=chrome --browser.headless --browser.provider=webdriverio",
"test:node": "vitest --run",
"test:coverage": "vitest run --coverage.enabled --coverage.provider=istanbul",
"test": "npm run test:node && npm run test:browser"
},
"repository": {
"type": "git",
"url": "git://github.com/microsoft-typescript/kiota.git"
},
"keywords": [
"kiota",
"openAPI",
"Microsoft",
"Graph",
"text"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/kiota-typescript/issues"
},
"homepage": "https://github.com/microsoft/kiota-typescript#readme",
"dependencies": {
"@microsoft/kiota-abstractions": "^1.0.0-preview.82",
"tslib": "^2.6.2"
},
"publishConfig": {
"access": "public"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@types/uuid": "^10.0.0",
"uuid": "^11.0.5"
}
}