-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.59 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.59 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
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
83
84
{
"name": "@microsoft/vscode-azext-eng",
"author": "Microsoft Corporation",
"version": "1.0.0-alpha.16",
"description": "Engineering package for Azure extensions for VS Code",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-azuretools"
},
"license": "MIT",
"exports": {
"./esbuild": {
"import": "./dist/esm/esbuild/esbuildConfigs.js",
"require": "./dist/cjs/esbuild/esbuildConfigs.js",
"types": "./dist/esm/esbuild/esbuildConfigs.d.ts"
},
"./eslint": {
"import": "./dist/esm/eslint/eslintConfigs.js",
"require": "./dist/cjs/eslint/eslintConfigs.js",
"types": "./dist/esm/eslint/eslintConfigs.d.ts"
},
"./vscode-test": {
"import": "./dist/esm/vscode-test/vscodeTestConfigs.js",
"require": "./dist/cjs/vscode-test/vscodeTestConfigs.js",
"types": "./dist/esm/vscode-test/vscodeTestConfigs.d.ts"
}
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --outDir ./dist/cjs --module nodenext --moduleResolution nodenext --declaration false",
"test": "exit 0",
"lint": "eslint --max-warnings 0",
"package": "npm pack"
},
"dependencies": {
"@eslint/js": "^10.0.1",
"@tony.ganchev/eslint-plugin-header": "^3.2.4",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"eslint": "^10.0.0",
"mocha": "^11.7.5",
"tsx": "^4.21.0",
"typescript": "~5.9",
"typescript-eslint": "^8.56.0"
},
"peerDependencies": {
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.27.3",
"esbuild-plugin-copy": "^2.1.1"
},
"peerDependenciesMeta": {
"@vscode/test-cli": {
"optional": true
},
"@vscode/test-electron": {
"optional": true
},
"@vscode/vsce": {
"optional": true
},
"esbuild": {
"optional": true
},
"esbuild-plugin-copy": {
"optional": true
}
},
"devDependencies": {
"@types/node": "22.x",
"@vscode/test-cli": "*",
"@vscode/test-electron": "*",
"esbuild": "*",
"esbuild-plugin-copy": "*"
},
"publishConfig": {
"tag": "alpha"
}
}