FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonVSCode/pythonExtensionApi/package.json at main · zashed/pythonVSCode · GitHub
zashed
/
pythonVSCode
Public
forked from
DonJayamanne/pythonVSCode
Notifications
You must be signed in to change notification settings
Fork
0
Star
2
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonVSCode
/
pythonExtensionApi
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (43 loc) · 1.39 KB
Breadcrumbs
pythonVSCode
/
pythonExtensionApi
/
package.json
Copy path
File metadata and controls
43 lines (43 loc) · 1.39 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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"
:
"
@vscode/python-extension
"
,
"description"
:
"
An API facade for the Python extension in VS Code
"
,
"version"
:
"
1.0.5
"
,
"author"
: {
"name"
:
"
Microsoft Corporation
"
},
"keywords"
: [
"
Python
"
,
"
VSCode
"
,
"
API
"
],
"main"
:
"
./out/main.js
"
,
"types"
:
"
./out/main.d.ts
"
,
"engines"
: {
"node"
:
"
>=18.17.1
"
,
"vscode"
:
"
^1.78.0
"
},
"license"
:
"
MIT
"
,
"homepage"
:
"
https://github.com/microsoft/vscode-python/tree/main/pythonExtensionApi
"
,
"repository"
: {
"type"
:
"
git
"
,
"url"
:
"
https://github.com/Microsoft/vscode-python
"
},
"bugs"
: {
"url"
:
"
https://github.com/Microsoft/vscode-python/issues
"
},
"devDependencies"
: {
"typescript"
:
"
5.0.4
"
,
"@types/vscode"
:
"
^1.78.0
"
,
"source-map"
:
"
^0.8.0-beta.0
"
},
"scripts"
: {
"prepublishOnly"
:
"
echo
\"
⛔ Can only publish from a secure pipeline ⛔
\"
&& node ../build/fail
"
,
"prepack"
:
"
npm run all:publish
"
,
"compile"
:
"
node ./node_modules/typescript/lib/tsc.js -b ./tsconfig.json
"
,
"clean"
:
"
node ../node_modules/rimraf/bin.js out
"
,
"lint"
:
"
node ../node_modules/eslint/bin/eslint.js --ext ts src
"
,
"all"
:
"
npm run clean && npm run compile
"
,
"formatTypings"
:
"
node ../node_modules/eslint/bin/eslint.js --fix ./out/main.d.ts
"
,
"all:publish"
:
"
git clean -xfd . && npm install && npm run compile && npm run formatTypings
"
}
}
Back
|
FazBrowse Home
|
New Git URL