-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 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
{
"name": "@microsoft/vscode-azureresources-api",
"version": "3.1.0",
"description": "Type declarations and client library for the Azure Resources extension API",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-azureresourcegroups",
"directory": "api"
},
"module": "dist/esm/src/index.js",
"main": "dist/cjs/src/index.js",
"types": "dist/vscode-azureresources-api.d.ts",
"scripts": {
"prepack": "npm run api-extractor",
"api-extractor": "npm run build && api-extractor run",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./ --outDir dist/esm",
"build:cjs": "tsc -p ./ --outDir dist/cjs --module nodenext --moduleResolution nodenext"
},
"author": "Microsoft",
"license": "MIT",
"engines": {
"vscode": "^1.105.0"
},
"devDependencies": {
"@types/node": "22.x",
"@types/vscode": "1.105.0"
},
"peerDependencies": {
"@azure/ms-rest-azure-env": "^2.0.0"
}
}