-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.3 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.3 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
{
"name": "@shi-corp/sdk-shield",
"version": "3.0.4",
"type": "module",
"main": "bin/index.js",
"description": "SDK client used to interface with the SHIELD application.",
"keywords": [
"OpenAPI",
"SHIELD",
"SDK",
"Automation",
"API",
"SHI"
],
"homepage": "https://github.com/Software-Hardware-Integration-Lab/OpenAPI#readme",
"bugs": {
"url": "https://github.com/Software-Hardware-Integration-Lab/OpenAPI/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Software-Hardware-Integration-Lab/OpenAPI.git"
},
"license": "MIT",
"author": "Elliot Huffman (elliot_huffman@shi.com)",
"scripts": {
"build:Dev": "tsc",
"prebuild:Prod": "tsc --sourceMap false --emitDeclarationOnly false",
"build:Prod": "tsc --sourceMap false --removeComments false",
"generate:Sdk": "kiota generate -l typescript -d ../../../specs/SHIELD.json -c ShieldClient -o ./sdk/ --exclude-backward-compatible",
"prepare": "ts-patch install"
},
"devDependencies": {
"@azure/core-auth": "~1.9.0",
"@types/node": "~22.15.29",
"ts-patch": "~3.3.0",
"typescript": "~5.8.3"
},
"dependencies": {
"@microsoft/kiota-authentication-azure": "~1.0.0-preview.93",
"@microsoft/kiota-bundle": "~1.0.0-preview.93",
"typia": "~9.3.1"
}
}