-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.81 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
{
"name": "@vscode/python-environments",
"description": "An API facade for the Python Environments extension in VS Code",
"version": "1.37.0",
"author": {
"name": "Microsoft Corporation"
},
"keywords": [
"Python",
"VSCode",
"API",
"Environments"
],
"exports": {
"import": {
"types": "./out/esm/main.d.ts",
"default": "./out/esm/main.mjs"
},
"require": {
"types": "./out/cjs/main.d.ts",
"default": "./out/cjs/main.cjs"
}
},
"engines": {
"node": ">=22.21.1",
"vscode": "^1.110.0"
},
"license": "MIT",
"homepage": "https://github.com/microsoft/vscode-python-environments/tree/main/api",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-python-environments"
},
"bugs": {
"url": "https://github.com/microsoft/vscode-python-environments/issues"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node -e \"process.exitCode = 1\"",
"prepack": "npm run all:publish",
"all:publish": "git clean -xfd . && npm install && npm run compile",
"compile": "npm run compile:esm && npm run compile:cjs",
"compile:esm": "tsc -b ./tsconfig.esm.json && mve out/esm/main.js out/esm/main.mjs",
"compile:cjs": "tsc -b ./tsconfig.cjs.json && mve out/cjs/main.js out/cjs/main.cjs",
"clean": "node -e \"const fs = require('fs'); fs.rmSync('./out', { recursive: true, force: true });\""
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/vscode": "^1.99.0",
"mve": "^0.1.2",
"typescript": "^5.1.3"
},
"dependencies": {
"@renovatebot/pep440": "^3.1.0"
}
}