-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
package.json
File metadata and controls
40 lines (40 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
{
"name": "@vscode/python-environments",
"description": "An API facade for the Python Environments extension in VS Code",
"version": "1.0.0",
"author": {
"name": "Microsoft Corporation"
},
"keywords": [
"Python",
"VSCode",
"API",
"Environments"
],
"main": "./out/main.js",
"types": "./out/main.d.ts",
"engines": {
"node": ">=22.21.1",
"vscode": "^1.110.0"
},
"license": "MIT",
"homepage": "https://github.com/microsoft/vscode-python-environments/tree/main/pythonEnvironmentsApi",
"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": "tsc -b ./tsconfig.json",
"clean": "node -e \"const fs = require('fs'); fs.rmSync('./out', { recursive: true, force: true });\""
},
"devDependencies": {
"@types/vscode": "^1.99.0",
"typescript": "^5.1.3"
}
}